// 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; }
Specyfikacja klienta
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-26 UTC.
[null,null,["Ostatnia aktualizacja: 2025-07-26 UTC."],[],["The content defines two data structures: `ClientInformation` and `PostalAddress`. `ClientInformation` stores a client's given name, family name, optional address, required telephone number, and email. `PostalAddress` breaks down an address into country, locality, region, optional post office box number, postal code, and street address. This data is used to collect and organize personal information required for booking.\n"]]