เมธอด GetWaitlistEntry

เมธอดนี้จะแสดงคิวรอเรียกของผู้ใช้ตามรหัสคิวรอที่ระบุ จองกับ Google จะโทรหาคุณเป็นระยะๆ เพื่อรับข้อมูลอัปเดตเกี่ยวกับคิวรอของผู้ใช้ คุณเรียกข้อมูลคิวรอเรียกได้เป็นเวลา 30 วันนับจากวันที่สร้าง

คำขอ

คําขอรับรายการรอเรียก

มูลค่าการคืนสินค้า

การตอบกลับสําหรับรายการรอเรียก


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