ListBookings 方法

要求

ListBookingsRequest

傳回值

ListBookingsResponse

這只需要傳回使用者往後所做的預訂,而不是所有時間內的預訂。

標準 gRPC 錯誤代碼

  • NOT_FOUND:要求的是對合作夥伴而言不明的 User ID
// Request to list all upcoming bookings for a user
message ListBookingsRequest {
  // ID of the user (required)
  string user_id = 1;
}

// Response for the [ext.maps.booking.partner.v2.ListBookings] RPC with all
// upcoming bookings for the requested user
message ListBookingsResponse {
  // All bookings of the user (required)
  repeated Booking bookings = 1;
}