Metodo GetWaitlistEntry

Questo metodo restituisce una voce della lista d'attesa per un utente in base all'ID voce della lista d'attesa fornito. Prenota con Google lo chiamerà periodicamente per ricevere aggiornamenti sulla voce della lista d'attesa dell'utente. Le voci della lista d'attesa devono essere recuperate per 30 giorni dalla data/ora di creazione.

Richiedi

GetAttendlistEntryRequest

Valore restituito

GetResponselistEntryResponse


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