ListBookings 메서드

이 메서드는 모든 판매자에 대한 사용자의 향후 예약을 반환합니다. 이 메서드는 이전 예약이나 취소된 예약을 반환해서는 안 됩니다.

요청

ListBookingsRequest

반환값

ListBookingsResponse

// Request to list all bookings for a user
message ListBookingsRequest {
  // ID of the user (required)
  string user_id = 1;
}

// Response for the ListBookings RPC with all bookings for the requested user.
message ListBookingsResponse {
  // All bookings of the user (required)
  repeated Booking bookings = 1;
}