Stay organized with collections
Save and categorize content based on your preferences.
// 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;}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-20 UTC."],[[["\u003cp\u003e\u003ccode\u003eClientInformation\u003c/code\u003e message stores personal details of a client making a booking, including name, address, phone number, and email.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ePostalAddress\u003c/code\u003e message provides detailed address information of a client, encompassing country, locality, region, post office box (optional), postal code, and street address.\u003c/p\u003e\n"],["\u003cp\u003eA client's phone number is required when creating a booking, while their address is optional.\u003c/p\u003e\n"]]],["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"],null,[]]