此方法会根据提供的候位名单条目 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; }