সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
অনুরোধ
SetMarketingPreferenceRequest
রিটার্ন মান
SetMarketingPreferenceResponse
// Request to set the partner marketing preference for a user.
message SetMarketingPreferenceRequest {
// Personal information of the user setting a marketing preference (required)
UserInformation user_information = 1;
// Whether the specified user has consented to receive marketing (required)
bool user_to_receive_marketing = 2;
}
// Response with the user's set marketing preference
message SetMarketingPreferenceResponse {
// Personal information of the user setting a marketing preference (required)
UserInformation user_information = 1;
// Whether the specified user has consented to receive marketing (required)
bool user_to_receive_marketing = 2;
}
// Personal information about the person taking action (e.g. making a
// booking, an order, or creates a parking session).
message UserInformation {
// Unique ID of the user to the partner, chosen by Reserve with Google.
// (required)
string user_id = 1;
// Given name of the user (maximum 40 characters) (required)
string given_name = 2;
// Family name of the user (maximum 40 characters) (required)
string family_name = 3;
// Address of the user (optional)
PostalAddress address = 4;
// Phone number of the user (required)
// Consistent with the international definition in ITU-T E.123 recommendation.
// However, local conventions are also followed, such as using '-' instead of
// a space as separator. For example, a phone number in the US can be
// written as '+1 415-736-0000'
string telephone = 5;
// Email address of the user (required except for waitlists)
string email = 6;
// User's language code, in IETF BCP 47 format. It is sent only if a partner
// is allowed to use this feature. Please contact Reserve with Google team
// to be added to the allowlist and receive this code. (optional)
string language_code = 7;
reserved 8;
}
[[["সহজে বোঝা যায়","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-01-05 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The `SetMarketingPreferenceRequest` allows partners to set a user's marketing preference, indicating whether they consent to receive marketing materials."],["This functionality requires specific integration types and partners should contact their Actions Center contact for enablement."],["The request and response messages include the user's personal information and their marketing preference status (`user_to_receive_marketing`)."],["`UserInformation` contains details like user ID, name, address, phone number, email, and potentially language code if allowed by Reserve with Google."]]],["The `SetMarketingPreferenceRequest` allows setting a user's marketing preference, requiring `UserInformation` and a boolean indicating consent to receive marketing. The `SetMarketingPreferenceResponse` mirrors this data. `UserInformation` details include `user_id`, `given_name`, `family_name`, `telephone`, and `email`; an `address` and `language_code` are optional. The feature is only available for certain integration types, which the user has to request.\n"]]