// 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; }
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2021-05-03 UTC.
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples / code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]