Stay organized with collections
Save and categorize content based on your preferences.
// Personal information about the person making a bookingmessageUserInformation{// Unique ID of the user to the partner, chosen by Reserve with Google.// (required)stringuser_id=1;// Given name of the user (maximum 40 characters) (required)stringgiven_name=2;// Family name of the user (maximum 40 characters) (required)stringfamily_name=3;// Address of the user (optional)PostalAddressaddress=4;// Phone number of the user (required)stringtelephone=5;// Email address of the user (required)stringemail=6;// User's language code, in BCP 47 format. Set iff partner is whitelisted.// Please contact the Reserve with Google team to be whitelisted for this// feature.stringlanguage_code=7;}// Postal address for a usermessagePostalAddress{// The country, e.g. "USA". (required)stringaddress_country=1;// The locality, e.g. "Mountain View". (required)stringaddress_locality=2;// The region, e.g. "CA". (required)stringaddress_region=3;// The post office box number, e.g. "3112". (optional)stringpost_office_box_number=4;// The postal code, e.g. "94043". (required)stringpostal_code=5;// The street address, e.g. "1600 Amphitheatre Pkwy". (required)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\u003eUserInformation\u003c/code\u003e message stores personal details like name, contact information, and address for booking purposes.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003euser_id\u003c/code\u003e, \u003ccode\u003egiven_name\u003c/code\u003e, \u003ccode\u003efamily_name\u003c/code\u003e, \u003ccode\u003etelephone\u003c/code\u003e, and \u003ccode\u003eemail\u003c/code\u003e are mandatory fields within the \u003ccode\u003eUserInformation\u003c/code\u003e message.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ePostalAddress\u003c/code\u003e message provides detailed address information including country, locality, region, postal code, and street address.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eaddress_country\u003c/code\u003e, \u003ccode\u003eaddress_locality\u003c/code\u003e, \u003ccode\u003eaddress_region\u003c/code\u003e, \u003ccode\u003epostal_code\u003c/code\u003e, and \u003ccode\u003estreet_address\u003c/code\u003e are required for a valid \u003ccode\u003ePostalAddress\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eOptional fields include \u003ccode\u003eaddress\u003c/code\u003e in \u003ccode\u003eUserInformation\u003c/code\u003e and \u003ccode\u003epost_office_box_number\u003c/code\u003e in \u003ccode\u003ePostalAddress\u003c/code\u003e, while \u003ccode\u003elanguage_code\u003c/code\u003e requires whitelisting.\u003c/p\u003e\n"]]],["The core content defines user information for booking purposes. It mandates a unique user ID, given and family names, phone number, and email. A postal address is optional but, if provided, requires country, locality, region, postal code, and street address. A user's language code is an optional field. The maximum characters allowed for the given and family name are 40 characters. All fields that are not optional are required.\n"],null,[]]