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