Getवेटलिस्ट की सूची वाला तरीका

इस तरीके से, दी गई वेटलिस्ट में मौजूद आईडी के आधार पर, उपयोगकर्ता के लिए वेटलिस्ट में शामिल होने की जानकारी मिलती है. Reserve with Google उपयोगकर्ता की वेटलिस्ट में शामिल होने के बारे में अपडेट पाने के लिए, समय-समय पर इसे कॉल करेगा. वेटलिस्ट में शामिल होने की तारीख से 30 दिनों के अंदर, आपको फिर से कोशिश करनी होगी.

अनुरोध

GetWaitlistEntryRequest

सामान लौटाने की वैल्यू

GetWaitlistEntryResponse


// Get the waitlist entry corresponding to the provided waitlist entry ID.
message GetWaitlistEntryRequest {
  // Required. The partner-provided waitlist entry ID to request info for.
  string waitlist_entry_id = 1;
}

// Response with the waitlist entry corresponding to the provided
// waitlist entry ID.
message GetWaitlistEntryResponse {
  // Required. The partner-provided information about a user’s waitlist entry.
  WaitlistEntry waitlist_entry = 1;
}