GetWaitlistEntry yöntemi

Bu yöntem, sağlanan bekleme listesi giriş kimliğine göre bir kullanıcı için bekleme listesi girişi döndürür. Google ile Rezervasyon, kullanıcının bekleme listesi girişi hakkında bilgi almak için bu sayfayı düzenli olarak arar. Bekleme listesi girişleri, oluşturuldukları andan itibaren 30 gün boyunca alınabilir olmalıdır.

İstek

Bekleme ListesiGiriş İsteği Alma

İade değeri

BekçilistesiGirişYanıtı


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