// 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"]],["上次更新時間: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"]]