// Personal information about the person making a bookingmessageClientInformation{// Given name of the clientstringgiven_name=1;// Family name of the clientstringfamily_name=2;// Address of the client (optional)PostalAddressaddress=3;// Phone number of the client (required)stringtelephone=4;// Email address of the clientstringemail=5;}// Postal address for a clientmessagePostalAddress{// The country, e.g. "USA".stringaddress_country=1;// The locality, e.g. "Mountain View".stringaddress_locality=2;// The region, e.g. "CA".stringaddress_region=3;// The post office box number, e.g. "3112", optional.stringpost_office_box_number=4;// The postal code, e.g. "94043".stringpostal_code=5;// The street address, e.g. "1600 Amphitheatre Pkwy".stringstreet_address=6;}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-05-24。"],[[["`ClientInformation` message stores personal details of a client making a booking, including name, address, phone number, and email."],["`PostalAddress` message provides detailed address information of a client, encompassing country, locality, region, post office box (optional), postal code, and street address."],["A client's phone number is required when creating a booking, while their address is optional."]]],["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"]]