diff --git a/proto/cmp/services/transport/v1alpha1/search_result_types.proto b/proto/cmp/services/transport/v1alpha1/search_result_types.proto index ee275ee8..01f3c4db 100644 --- a/proto/cmp/services/transport/v1alpha1/search_result_types.proto +++ b/proto/cmp/services/transport/v1alpha1/search_result_types.proto @@ -24,41 +24,40 @@ message TransportSearchResult { // Option to carry through an offer identifier for other stateful provider systems // like NDC AirShopping RS string offer_id = 2; - string segment_id = 3; // Travellers - repeated cmp.types.v1alpha1.Traveller travellers = 4; + repeated cmp.types.v1alpha1.Traveller travellers = 3; // Travelling trip. See `search.proto` documentation - Trip travelling_trip = 5; + Trip travelling_trip = 4; // Returning trip. See `search.proto` documentation - Trip returning_trip = 6; + Trip returning_trip = 5; // Total Price - cmp.types.v1alpha1.PriceDetail total_price = 7; + cmp.types.v1alpha1.PriceDetail total_price = 6; // Services - repeated cmp.types.v1alpha1.ServiceFact included_services = 8; - repeated cmp.types.v1alpha1.ServiceFact compulsory_extras = 9; - repeated cmp.types.v1alpha1.ServiceFact optional_extras = 10; + repeated cmp.types.v1alpha1.ServiceFact included_services = 7; + repeated cmp.types.v1alpha1.ServiceFact compulsory_extras = 8; + repeated cmp.types.v1alpha1.ServiceFact optional_extras = 9; // Rate Rules - repeated cmp.types.v1alpha1.RateRule rate_rules = 11; + repeated cmp.types.v1alpha1.RateRule rate_rules = 10; // Fulfillment - repeated cmp.types.v1alpha1.Fulfillment fulfillments = 12; //FIXME: Can linktype be an ENUM? + repeated cmp.types.v1alpha1.Fulfillment fulfillments = 11; //FIXME: Can linktype be an ENUM? // Validity of the search option. // // `DateTimeRange` type with `start_date` and `end_date` in which the option can // be booked. If the start_date is omitted, the offer can be booked until the // end-date. - cmp.types.v1alpha1.DateTimeRange validity = 13; + cmp.types.v1alpha1.DateTimeRange validity = 12; // Cancel Policy - cmp.types.v1alpha1.CancelPolicy cancel_policy = 14; + cmp.types.v1alpha1.CancelPolicy cancel_policy = 13; // Observations - string observations = 15; + string observations = 14; } \ No newline at end of file