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