طريقة الحصول على قائمة الانتظار

تؤدي هذه الطريقة إلى عرض إدخال في قائمة الانتظار للمستخدم استنادًا إلى رقم تعريف إدخال قائمة الانتظار المقدَّم. وسيبحث "مركز الإجراءات" عن هذا الإجراء بشكل دوري لمعرفة آخر المعلومات بخصوص البيانات التي يتم إدخالها في قائمة الانتظار الخاصة بالمستخدم. يجب أن يكون بالإمكان استرداد الإدخالات في قائمة الانتظار لمدة 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;
}

الحصول على نماذج إدخال قائمة الانتظار

الحصول على الطلب

{ "waitlist_entry_id": "MYS-1668739060" }

الحصول على رد

{
  "waitlist_entry": {
    "wait_estimate": {
      "party_size": 3,
      "wait_length": { "parties_ahead_count": 3 }
    },
    "waitlist_entry_state": "WAITING",
    "waitlist_entry_state_times": { "created_time_seconds": 1234567890 }
  }
}