Get all bookings
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 44s
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 44s
This commit is contained in:
@@ -14,6 +14,7 @@ service CarpoolService {
|
||||
rpc GetUserPlanning(GetUserPlanningRequest) returns (GetUserPlanningResponse) {}
|
||||
rpc GetPlannedTrip(GetPlannedTripRequest) returns (GetPlannedTripResponse) {}
|
||||
rpc GetUserBookings(GetUserBookingsRequest) returns (GetUserBookingsResponse) {}
|
||||
rpc GetCarpoolBookings(GetCarpoolBookingsRequest) returns (GetCarpoolBookingsResponse) {}
|
||||
|
||||
// OCSS interactions
|
||||
rpc DriverJourneys(DriverJourneysRequest) returns (DriverJourneysResponse) {}
|
||||
@@ -75,6 +76,15 @@ message GetUserBookingsResponse {
|
||||
repeated CarpoolServiceBooking bookings = 1;
|
||||
}
|
||||
|
||||
message GetCarpoolBookingsRequest {
|
||||
optional google.protobuf.Timestamp min_date = 2;
|
||||
optional google.protobuf.Timestamp max_date = 3;
|
||||
}
|
||||
|
||||
message GetCarpoolBookingsResponse {
|
||||
repeated CarpoolServiceBooking bookings = 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// OCSS-like interaction messages
|
||||
|
||||
Reference in New Issue
Block a user