طريقة إدخال قائمة الانتظار

تعرض هذه الطريقة إدخال قائمة الانتظار لمستخدم استنادًا إلى معرّف إدخال قائمة الانتظار المقدَّم. ستُجري ميزة "الحجز عبر Google" استدعاءً دوريًا للحصول على آخر الأخبار بشأن إدخال المستخدم في قائمة الانتظار. يجب أن تكون بيانات قوائم الانتظار قابلة للاسترداد لمدة 30 يومًا من وقت إنشائها.

طلب

إدخال قائمة الانتظار

قيمة الإرجاع

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


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