GetWaitlistEntry メソッド

このメソッドは、指定された順番待ちリストエントリ ID に基づいて、ユーザーの順番待ちリストエントリを返します。「Google で予約」は、定期的に電話をかけてユーザーの順番待ちリストのエントリを更新します。順番待ちリストのエントリは、作成日から 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;
}