שיטת אחזור רשימות המתנה

השיטה הזו מחזירה רשומה ברשימת ההמתנה עבור המשתמש על סמך מזהה הרשומה ברשימת ההמתנה. שירות 'Google הזמנת מקומות' יתקשרו אליך מדי פעם כדי לקבל עדכונים לגבי רשימת ההמתנה של המשתמשים. ניתן לאחזר את הרשומות של רשימות ההמתנה למשך 30 ימים ממועד היצירה שלהן.

בקשה

קבלת רשימת המתנהEntryRequest

ערך החזרה

GetlistlistEntryResponse


// 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;
}