// Personal information about the person making a booking message ClientInformation { // Given name of the client string given_name = 1; // Family name of the client string family_name = 2; // Address of the client (optional) PostalAddress address = 3; // Phone number of the client (required) string telephone = 4; // Email address of the client string email = 5; } // Postal address for a client message PostalAddress { // The country, e.g. "USA". string address_country = 1; // The locality, e.g. "Mountain View". string address_locality = 2; // The region, e.g. "CA". string address_region = 3; // The post office box number, e.g. "3112", optional. string post_office_box_number = 4; // The postal code, e.g. "94043". string postal_code = 5; // The street address, e.g. "1600 Amphitheatre Pkwy". string street_address = 6; }
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-10-14 (UTC).
[null,null,["Zuletzt aktualisiert: 2024-10-14 (UTC)."],[[["`ClientInformation` message stores personal details of a client including name, address, phone number, and email."],["`PostalAddress` message provides detailed address information including country, locality, region, post office box, postal code, and street address."],["Phone number is a required field within `ClientInformation` while address is optional."],["Address details are further broken down in `PostalAddress` with fields for various components."]]],[]]