osdm-sys 0.1.0-alpha.1

Specifications for the OSDM API standard. The OSDM specification supports two modes of operation: Retailer Mode and Distributor Mode. The API works identically in both modes, except that in distributor mode the API also returns fare information. The following resources are key to get started: - [Processes](https://osdm.io/spec/processes/) - [Models](https://osdm.io/spec/models/) - [Getting started](https://osdm.io/spec/getting-started/)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
# Rust API client for OSDM

Specifications for the OSDM API standard. The OSDM specification supports two modes of operation: Retailer Mode and Distributor Mode. The API works identically in both modes, except that in distributor mode the API also returns fare information.

The following resources are key to get started:

- [Processes]https://osdm.io/spec/processes/
- [Models]https://osdm.io/spec/models/
- [Getting started]https://osdm.io/spec/getting-started/

For more information, please visit [https://osdm.io](https://osdm.io)

## Overview

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: 3.7.0
- Generator version: 7.17.0
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`

## Documentation for API Endpoints

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AvailabilitiesApi* | [**get_availabilities_continuous_services**]docs/AvailabilitiesApi.md#get_availabilities_continuous_services | **POST** /availabilities/on-demand-services | Get availabilities of an on-demand service.
*AvailabilitiesApi* | [**get_availabilities_nearby**]docs/AvailabilitiesApi.md#get_availabilities_nearby | **GET** /availabilities/nearby | Get availabilities nearby a given place.
*AvailabilitiesApi* | [**get_availabilities_place_map**]docs/AvailabilitiesApi.md#get_availabilities_place_map | **GET** /availabilities/place-map | Get place map including availabilities.
*AvailabilitiesApi* | [**get_availabilities_place_maps**]docs/AvailabilitiesApi.md#get_availabilities_place_maps | **POST** /availabilities/place-map | Get multiple place maps including availabilities.
*AvailabilitiesApi* | [**get_availabilities_preferences**]docs/AvailabilitiesApi.md#get_availabilities_preferences | **GET** /availabilities/preferences | Get availabilities for a set of preferences.
*AvailabilitiesApi* | [**get_availabilities_vehicle_place_map**]docs/AvailabilitiesApi.md#get_availabilities_vehicle_place_map | **POST** /availabilities/vehicle-place-map | Get a place map for a requested vehicle including availabilities.
*BookedOffersApi* | [**delete_booking_booked_offers_id**]docs/BookedOffersApi.md#delete_booking_booked_offers_id | **DELETE** /bookings/{bookingId}/booked-offers/{bookedOfferId} | Delete a bookedOffer from a booking.
*BookedOffersApi* | [**delete_booking_booked_offers_id_passenger_id**]docs/BookedOffersApi.md#delete_booking_booked_offers_id_passenger_id | **DELETE** /bookings/{bookingId}/booked-offers/{offerId}/passengers/{passengerId} | Delete a passenger from bookedOffer of a booking.
*BookedOffersApi* | [**get_booking_booked_offers_id**]docs/BookedOffersApi.md#get_booking_booked_offers_id | **GET** /bookings/{bookingId}/booked-offers/{bookedOfferId} | Gets a bookedOffer of a booking.
*BookedOffersApi* | [**post_booking_booked_offers**]docs/BookedOffersApi.md#post_booking_booked_offers | **POST** /bookings/{bookingId}/booked-offers | Creates bookedOffers from offers and adds them in a booking.
*BookingDocumentsApi* | [**create_documents**]docs/BookingDocumentsApi.md#create_documents | **POST** /bookings/{bookingId}/documents | Allows adding a document to a booking.
*BookingDocumentsApi* | [**delete_bookings_documents_id**]docs/BookingDocumentsApi.md#delete_bookings_documents_id | **DELETE** /bookings/{bookingId}/documents/{documentId} | Delete a document from a booking.
*BookingDocumentsApi* | [**get_document**]docs/BookingDocumentsApi.md#get_document | **GET** /bookings/{bookingId}/documents/{documentId} | Returns a booking document.
*BookingPartApi* | [**create_booking_booked_offers_ancillaries**]docs/BookingPartApi.md#create_booking_booked_offers_ancillaries | **POST** /bookings/{bookingId}/booked-offers/{bookedOfferId}/ancillaries | Adds an ancillary not previously added from offer to a booking.
*BookingPartApi* | [**create_booking_booked_offers_parts**]docs/BookingPartApi.md#create_booking_booked_offers_parts | **POST** /bookings/{bookingId}/booked-offers/{bookedOfferId}/offer-parts | Adds a reservation or ancillary not previously added from offer to a booking. 
*BookingPartApi* | [**create_booking_booked_offers_reservations**]docs/BookingPartApi.md#create_booking_booked_offers_reservations | **POST** /bookings/{bookingId}/booked-offers/{bookedOfferId}/reservations | Adds a reservation not previously added from offer to a booking. 
*BookingPartApi* | [**delete_booking_booked_offers_admission**]docs/BookingPartApi.md#delete_booking_booked_offers_admission | **DELETE** /bookings/{bookingId}/booked-offers/{bookedOfferId}/admissions/{admissionId} | Removes an admission from a booking. In case the admission is not confirmed. On a confirmed admission use the refund.
*BookingPartApi* | [**delete_booking_booked_offers_ancillary**]docs/BookingPartApi.md#delete_booking_booked_offers_ancillary | **DELETE** /bookings/{bookingId}/booked-offers/{bookedOfferId}/ancillaries/{ancillaryId} | Removes an ancillary from a booking in case the ancillary is not jet confirmed. On confirmed ancillaries use the refund.
*BookingPartApi* | [**delete_booking_booked_offers_parts**]docs/BookingPartApi.md#delete_booking_booked_offers_parts | **DELETE** /bookings/{bookingId}/booked-offers/{bookedOfferId}/offer-parts | Removes reservations or ancillaries from a booking in case the parts were not yet confirmed. On confirmed reservations use the refund.
*BookingPartApi* | [**delete_booking_booked_offers_reservations**]docs/BookingPartApi.md#delete_booking_booked_offers_reservations | **DELETE** /bookings/{bookingId}/booked-offers/{bookedOfferId}/reservations/{reservationId} | Removes a reservation from a booking in case the reservation was not yet confirmed. On confirmed reservations use the refund.
*BookingsApi* | [**delete_bookings_id**]docs/BookingsApi.md#delete_bookings_id | **DELETE** /bookings/{bookingId} | Deletes a booking.
*BookingsApi* | [**get_bookings_id**]docs/BookingsApi.md#get_bookings_id | **GET** /bookings/{bookingId} | Returns a booking.
*BookingsApi* | [**get_bookings_id_history**]docs/BookingsApi.md#get_bookings_id_history | **GET** /bookings/{bookingId}/history | Returns the history of changes to a booking.
*BookingsApi* | [**post_booking_cleanup**]docs/BookingsApi.md#post_booking_cleanup | **POST** /bookings/{bookingId}/cleanup | Performs a complete cleanup of a booking in a single step
*BookingsApi* | [**post_bookings**]docs/BookingsApi.md#post_bookings | **POST** /bookings | Creates a booking based on a previously requested offer.
*BookingsApi* | [**update_booking**]docs/BookingsApi.md#update_booking | **PATCH** /bookings/{bookingId} | Updates a booking but does *not* confirm the booking.
*BookingsSearchApi* | [**search_bookings**]docs/BookingsSearchApi.md#search_bookings | **POST** /bookings-search | Search for bookings based on search parameters.
*BookingsSplitApi* | [**split_bookings**]docs/BookingsSplitApi.md#split_bookings | **POST** /bookings/{bookingId}/split | Split a booking into multiple bookings.
*CancelFulfillmentsApi* | [**delete_cancel_fulfillment_offers**]docs/CancelFulfillmentsApi.md#delete_cancel_fulfillment_offers | **DELETE** /bookings/{bookingId}/cancel-fulfillments-offers/{cancelFulfillmentsOfferId} | Deletes a cancel fulfillments offer without waiting for expiry.
*CancelFulfillmentsApi* | [**get_cancel_fulfillment_offers**]docs/CancelFulfillmentsApi.md#get_cancel_fulfillment_offers | **GET** /bookings/{bookingId}/cancel-fulfillments-offers/{cancelFulfillmentsOfferId} | Returns the cancel fulfillments offer for the ids provided.
*CancelFulfillmentsApi* | [**patch_cancel_fulfillments_offers**]docs/CancelFulfillmentsApi.md#patch_cancel_fulfillments_offers | **PATCH** /bookings/{bookingId}/cancel-fulfillments-offers/{cancelFulfillmentsOfferId} | Allows to accept and confirm a cancel fulfillments offer.
*CancelFulfillmentsApi* | [**post_cancel_fulfillments_offers**]docs/CancelFulfillmentsApi.md#post_cancel_fulfillments_offers | **POST** /bookings/{bookingId}/cancel-fulfillments-offers | Initiates a cancel fulfillments process
*ComplaintManagementApi* | [**create_complaint**]docs/ComplaintManagementApi.md#create_complaint | **POST** /complaints | Allows adding a complaint.
*ComplaintManagementApi* | [**get_complaint**]docs/ComplaintManagementApi.md#get_complaint | **GET** /complaints/{complaintId} | Returns a complaint.
*ComplaintManagementApi* | [**patch_complaint**]docs/ComplaintManagementApi.md#patch_complaint | **PATCH** /complaints/{complaintId} | Allows updating a complaint.
*ExchangeApi* | [**create_bookings_exchange_operations**]docs/ExchangeApi.md#create_bookings_exchange_operations | **POST** /bookings/{bookingId}/exchange-operations | Pre-books an exchangeOffer as part of an exchange operation.
*ExchangeApi* | [**create_exchange_offers_collection**]docs/ExchangeApi.md#create_exchange_offers_collection | **POST** /bookings/{bookingId}/exchange-offers | Returns exchange offers for specified fulfillments
*ExchangeApi* | [**delete_bookings_exchange_operation**]docs/ExchangeApi.md#delete_bookings_exchange_operation | **DELETE** /bookings/{bookingId}/exchange-operations/{exchangeOperationId} | Cancels an ongoing exchange operation in provisional state.
*ExchangeApi* | [**get_bookings_exchange_operations**]docs/ExchangeApi.md#get_bookings_exchange_operations | **GET** /bookings/{bookingId}/exchange-operations/{exchangeOperationId} | Returns the exchange operation with the id provided.
*ExchangeApi* | [**update_bookings_exchange_operations**]docs/ExchangeApi.md#update_bookings_exchange_operations | **PATCH** /bookings/{bookingId}/exchange-operations/{exchangeOperationId} | Allows to update an ongoing exchange operation.
*FulfillmentsApi* | [**finalize_fulfillments**]docs/FulfillmentsApi.md#finalize_fulfillments | **PATCH** /bookings/{bookingId}/fulfillments | Optionally finalizes the fulfillments in asynchronous mode.
*FulfillmentsApi* | [**get_check_fulfillments**]docs/FulfillmentsApi.md#get_check_fulfillments | **GET** /bookings/{bookingId}/fulfillment-check | Verification step (step 1 in a two phase commit process) to run before the effective fulfillment endpoint. Provider do all checks to \"guarantee\" that fullfillment will work.
*FulfillmentsApi* | [**get_continuous_service_usage_id**]docs/FulfillmentsApi.md#get_continuous_service_usage_id | **GET** /fulfillments/{fulfillmentId}/continuous-service-usage/{continuousServiceUsageId} | return the continuous service usage including latest updates
*FulfillmentsApi* | [**get_fulfillment_id**]docs/FulfillmentsApi.md#get_fulfillment_id | **GET** /fulfillments/{fulfillmentId} | Returns the fulfillment, aka. ticket for the provided id.
*FulfillmentsApi* | [**patch_continuous_service_usage_id**]docs/FulfillmentsApi.md#patch_continuous_service_usage_id | **PATCH** /fulfillments/{fulfillmentId}/continuous-service-usage/{continuousServiceUsageId} | start or end the usage of a continuous service of an demand vehicle
*FulfillmentsApi* | [**patch_fulfillment_id**]docs/FulfillmentsApi.md#patch_fulfillment_id | **PATCH** /fulfillments/{fulfillmentId} | Activates a fulfillment, i.e. changes the status from AVAILABLE to FULFILLED.
*FulfillmentsApi* | [**post_fulfillments**]docs/FulfillmentsApi.md#post_fulfillments | **POST** /bookings/{bookingId}/fulfillments | Confirms the booking a triggers the fulfillment of the booking synchronously or asynchronously.
*MasterDataApi* | [**get_coach_deck_layout**]docs/MasterDataApi.md#get_coach_deck_layout | **GET** /coach-deck-layouts/{layoutId} | Returns a coach deck layout for a provided id.
*MasterDataApi* | [**get_coach_deck_layouts**]docs/MasterDataApi.md#get_coach_deck_layouts | **GET** /coach-deck-layouts | Returns all coach deck layouts.
*MasterDataApi* | [**get_coach_layouts**]docs/MasterDataApi.md#get_coach_layouts | **GET** /coach-layouts | Returns all coach layouts.
*MasterDataApi* | [**get_coach_layouts_layout_id**]docs/MasterDataApi.md#get_coach_layouts_layout_id | **GET** /coach-layouts/{layoutId} | Returns a coach layout for a provided id.
*MasterDataApi* | [**get_passenger_categories**]docs/MasterDataApi.md#get_passenger_categories | **GET** /passenger-categories | Returns all defined passenger categories.
*MasterDataApi* | [**get_places**]docs/MasterDataApi.md#get_places | **GET** /places | Returns all places.
*MasterDataApi* | [**get_product_tags**]docs/MasterDataApi.md#get_product_tags | **GET** /product-tags | Returns all product tags and their grouping.
*MasterDataApi* | [**get_products**]docs/MasterDataApi.md#get_products | **GET** /products | Returns all products.
*MasterDataApi* | [**get_products_id**]docs/MasterDataApi.md#get_products_id | **GET** /products/{productId} | Returns a product for the provided id.
*MasterDataApi* | [**get_reduction_cards**]docs/MasterDataApi.md#get_reduction_cards | **GET** /reduction-cards | Returns all reduction card definitions.
*MasterDataApi* | [**get_zones**]docs/MasterDataApi.md#get_zones | **GET** /zones | Returns all zone definitions.
*OfferOverviewApi* | [**get_offer_overview_route**]docs/OfferOverviewApi.md#get_offer_overview_route | **POST** /offer-overview-route | Returns an overview of prices based on route
*OfferOverviewApi* | [**get_offer_overview_trip**]docs/OfferOverviewApi.md#get_offer_overview_trip | **POST** /offer-overview-trip | Returns an overview of prices based on trips
*OffersApi* | [**create_offers**]docs/OffersApi.md#create_offers | **POST** /offers | Returns offers for trips or trip search criteria.
*OffersApi* | [**get_booking_booked_offers_additional_offers**]docs/OffersApi.md#get_booking_booked_offers_additional_offers | **GET** /bookings/{bookingId}/booked-offers/{bookedOfferId}/additional-offers | Get additional offers of booked offer for a given booking. A provider can decide to allow or reject additional offers admissions, reservations or ancillaries on an confirmed booking.
*OnDemandServicesApi* | [**get_availabilities_continuous_services**]docs/OnDemandServicesApi.md#get_availabilities_continuous_services | **POST** /availabilities/on-demand-services | Get availabilities of an on-demand service.
*OnDemandServicesApi* | [**get_continuous_service_usage_id**]docs/OnDemandServicesApi.md#get_continuous_service_usage_id | **GET** /fulfillments/{fulfillmentId}/continuous-service-usage/{continuousServiceUsageId} | return the continuous service usage including latest updates
*OnDemandServicesApi* | [**patch_continuous_service_usage_id**]docs/OnDemandServicesApi.md#patch_continuous_service_usage_id | **PATCH** /fulfillments/{fulfillmentId}/continuous-service-usage/{continuousServiceUsageId} | start or end the usage of a continuous service of an demand vehicle
*OnHoldApi* | [**confirm_on_hold_offer**]docs/OnHoldApi.md#confirm_on_hold_offer | **PATCH** /bookings/{bookingId}/on-hold-offer/{onHoldOfferId} | Confirms the on hold offer.
*OnHoldApi* | [**create_on_hold_offer**]docs/OnHoldApi.md#create_on_hold_offer | **POST** /bookings/{bookingId}/on-hold-offer | Creates an on hold offer.
*OnHoldApi* | [**delete_on_hold_offer**]docs/OnHoldApi.md#delete_on_hold_offer | **DELETE** /bookings/{bookingId}/on-hold-offer/{onHoldOfferId} | Deletes the on hold offer
*PassengerCategoriesApi* | [**get_passenger_categories**]docs/PassengerCategoriesApi.md#get_passenger_categories | **GET** /passenger-categories | Returns all defined passenger categories.
*PassengersApi* | [**get_booking_passengers**]docs/PassengersApi.md#get_booking_passengers | **GET** /bookings/{bookingId}/passengers | Returns all the passenger's in the booking.
*PassengersApi* | [**get_booking_passengers_id**]docs/PassengersApi.md#get_booking_passengers_id | **GET** /bookings/{bookingId}/passengers/{passengerId} | Returns the passenger's information at booking step.
*PassengersApi* | [**patch_booking_passenger**]docs/PassengersApi.md#patch_booking_passenger | **PATCH** /bookings/{bookingId}/passengers/{passengerId} | Allows updating a passenger's information at booking step.
*PassengersApi* | [**patch_booking_passengers**]docs/PassengersApi.md#patch_booking_passengers | **PATCH** /bookings/{bookingId}/passengers | Allows updating a set of passengers in a batch at booking step.
*PlacesApi* | [**get_places_id**]docs/PlacesApi.md#get_places_id | **GET** /places/{placeId} | returns a place
*PlacesApi* | [**post_places**]docs/PlacesApi.md#post_places | **POST** /places | returns place information for a given place request
*ProductApi* | [**get_product_tags**]docs/ProductApi.md#get_product_tags | **GET** /product-tags | Returns all product tags and their grouping.
*ProductApi* | [**get_products**]docs/ProductApi.md#get_products | **GET** /products | Returns all products.
*ProductApi* | [**get_products_id**]docs/ProductApi.md#get_products_id | **GET** /products/{productId} | Returns a product for the provided id.
*ProductApi* | [**search_products**]docs/ProductApi.md#search_products | **POST** /products-search | Search for products based on search parameters.
*PurchaserApi* | [**get_booking_purchaser**]docs/PurchaserApi.md#get_booking_purchaser | **GET** /bookings/{bookingId}/purchaser | Returns the purchaser's information at booking step.
*PurchaserApi* | [**patch_booking_purchaser**]docs/PurchaserApi.md#patch_booking_purchaser | **PATCH** /bookings/{bookingId}/purchaser | Allows updating a purchaser's information at booking step.
*PurchaserApi* | [**post_booking_purchaser**]docs/PurchaserApi.md#post_booking_purchaser | **POST** /bookings/{bookingId}/purchaser | Allows creating a purchaser for a booking already existing.
*RefundApi* | [**delete_refund_offers**]docs/RefundApi.md#delete_refund_offers | **DELETE** /bookings/{bookingId}/refund-offers/{refundOfferId} | Deletes a refundOffer without waiting for expiry.
*RefundApi* | [**get_refund_offers**]docs/RefundApi.md#get_refund_offers | **GET** /bookings/{bookingId}/refund-offers/{refundOfferId} | Returns the refund offer for the ids provided.
*RefundApi* | [**patch_refund_offers**]docs/RefundApi.md#patch_refund_offers | **PATCH** /bookings/{bookingId}/refund-offers/{refundOfferId} | Allows to accept and confirm a refund offer.
*RefundApi* | [**post_prepare_refund_offers**]docs/RefundApi.md#post_prepare_refund_offers | **GET** /bookings/{bookingId}/refund-offers/{refundOfferId}/confirmation-check | Validation step (step 1 in a two phase commit process) to run before the effective patch endpoint. Provider do all checks to \"guarantee\" that refund will work.
*RefundApi* | [**post_refund_offers**]docs/RefundApi.md#post_refund_offers | **POST** /bookings/{bookingId}/refund-offers | Initiates a refund process by creating a refundOffer resource.
*ReimbursementManagementApi* | [**create_reimbursement**]docs/ReimbursementManagementApi.md#create_reimbursement | **POST** /bookings/{bookingId}/reimbursements | Create reimbursement for a booking.
*ReimbursementManagementApi* | [**get_reimbursement**]docs/ReimbursementManagementApi.md#get_reimbursement | **GET** /bookings/{bookingId}/reimbursements/{reimbursementId} | Get reimbursement of a booking.
*ReimbursementManagementApi* | [**update_reimbursement**]docs/ReimbursementManagementApi.md#update_reimbursement | **PATCH** /bookings/{bookingId}/reimbursements/{reimbursementId} | Update reimbursement of a booking.
*ReleaseApi* | [**delete_release_offers**]docs/ReleaseApi.md#delete_release_offers | **DELETE** /bookings/{bookingId}/release-offers/{releaseOfferId} | Deletes a release offer without waiting for expiry.
*ReleaseApi* | [**get_release_offer**]docs/ReleaseApi.md#get_release_offer | **GET** /bookings/{bookingId}/release-offers/{releaseOfferId} | Returns the release offer for the ids provided.
*ReleaseApi* | [**patch_release_offers**]docs/ReleaseApi.md#patch_release_offers | **PATCH** /bookings/{bookingId}/release-offers/{releaseOfferId} | Allows to accept and confirm a release offer. When accepted, all associated admissions are invalidated and reserved seats are released. The obtain money refund, refund offer must be used at later stage. 
*ReleaseApi* | [**post_release_offers**]docs/ReleaseApi.md#post_release_offers | **POST** /bookings/{bookingId}/release-offers | Initiates a release process by creating a releaseOffers resource.
*SearchApi* | [**search_bookings**]docs/SearchApi.md#search_bookings | **POST** /bookings-search | Search for bookings based on search parameters.
*SearchApi* | [**search_products**]docs/SearchApi.md#search_products | **POST** /products-search | Search for products based on search parameters.
*TravelAccountApi* | [**get_travel_accounts**]docs/TravelAccountApi.md#get_travel_accounts | **GET** /travel-accounts | Returns a travel account.
*TripsApi* | [**get_trips_collection_id**]docs/TripsApi.md#get_trips_collection_id | **GET** /trips-collections/{tripsCollectionId} | Returns a collection of trips.
*TripsApi* | [**get_trips_id**]docs/TripsApi.md#get_trips_id | **GET** /trips/{tripId} | Returns a trip element representing a travel trip.
*TripsApi* | [**post_trips**]docs/TripsApi.md#post_trips | **POST** /trips-collection | returns a collection of trips for a given OJP trip request
*TripsApi* | [**post_trips_change**]docs/TripsApi.md#post_trips_change | **POST** /trips | Returns a new trip for given OJP parameters based on an already existing trip
*VersionsApi* | [**get_versions**]docs/VersionsApi.md#get_versions | **GET** /versions | Returns all available versions of the OSDM API.


## Documentation For Models

 - [AbstractBookingPart]docs/AbstractBookingPart.md
 - [AbstractOfferPart]docs/AbstractOfferPart.md
 - [AbstractTransportableVehicleSpecification]docs/AbstractTransportableVehicleSpecification.md
 - [AbstractTravelAccount]docs/AbstractTravelAccount.md
 - [AbstractTravelAccountUnit]docs/AbstractTravelAccountUnit.md
 - [AccountingRef]docs/AccountingRef.md
 - [AdditionalOfferCollectionResponse]docs/AdditionalOfferCollectionResponse.md
 - [Address]docs/Address.md
 - [AddressRef]docs/AddressRef.md
 - [Admission]docs/Admission.md
 - [AdmissionOfferPart]docs/AdmissionOfferPart.md
 - [AfterSaleCondition]docs/AfterSaleCondition.md
 - [AfterSalesConditionsLink]docs/AfterSalesConditionsLink.md
 - [AfterSalesOverrideDetails]docs/AfterSalesOverrideDetails.md
 - [Alight]docs/Alight.md
 - [AlightSpecification]docs/AlightSpecification.md
 - [Ancillary]docs/Ancillary.md
 - [AncillaryGroup]docs/AncillaryGroup.md
 - [AncillaryOfferPart]docs/AncillaryOfferPart.md
 - [AncillaryRelation]docs/AncillaryRelation.md
 - [AncillarySelection]docs/AncillarySelection.md
 - [AnonymousPassengerSpecification]docs/AnonymousPassengerSpecification.md
 - [ApiNextVersion]docs/ApiNextVersion.md
 - [ApiVersion]docs/ApiVersion.md
 - [AppliedPassengerType]docs/AppliedPassengerType.md
 - [AvailabilityScope]docs/AvailabilityScope.md
 - [AvailabilityStatus]docs/AvailabilityStatus.md
 - [AvailablePlace]docs/AvailablePlace.md
 - [AvailablePlacePreferences]docs/AvailablePlacePreferences.md
 - [BackOfficeStatus]docs/BackOfficeStatus.md
 - [BankAccountReference]docs/BankAccountReference.md
 - [BaseTripPolicyFilter]docs/BaseTripPolicyFilter.md
 - [Board]docs/Board.md
 - [BoardSpecification]docs/BoardSpecification.md
 - [BookedOffer]docs/BookedOffer.md
 - [BookedOfferAncillaryRequest]docs/BookedOfferAncillaryRequest.md
 - [BookedOfferAncillaryResponse]docs/BookedOfferAncillaryResponse.md
 - [BookedOfferPartDeleteRequest]docs/BookedOfferPartDeleteRequest.md
 - [BookedOfferPartRequest]docs/BookedOfferPartRequest.md
 - [BookedOfferPartResponse]docs/BookedOfferPartResponse.md
 - [BookedOfferRequest]docs/BookedOfferRequest.md
 - [BookedOfferReservationRequest]docs/BookedOfferReservationRequest.md
 - [BookedOfferReservationResponse]docs/BookedOfferReservationResponse.md
 - [BookedOfferResponse]docs/BookedOfferResponse.md
 - [BookedOfferSummary]docs/BookedOfferSummary.md
 - [Booking]docs/Booking.md
 - [BookingCleanupRequest]docs/BookingCleanupRequest.md
 - [BookingHistoryResponse]docs/BookingHistoryResponse.md
 - [BookingPartReference]docs/BookingPartReference.md
 - [BookingPartStatus]docs/BookingPartStatus.md
 - [BookingPartSummary]docs/BookingPartSummary.md
 - [BookingPartType]docs/BookingPartType.md
 - [BookingPatchRequest]docs/BookingPatchRequest.md
 - [BookingRequest]docs/BookingRequest.md
 - [BookingResponse]docs/BookingResponse.md
 - [BookingResponseContent]docs/BookingResponseContent.md
 - [BookingSearchParameters]docs/BookingSearchParameters.md
 - [BookingSearchRequest]docs/BookingSearchRequest.md
 - [BookingSearchResponse]docs/BookingSearchResponse.md
 - [BookingSearchResult]docs/BookingSearchResult.md
 - [BookingSplit]docs/BookingSplit.md
 - [BookingSplitGroup]docs/BookingSplitGroup.md
 - [BookingSplitRequest]docs/BookingSplitRequest.md
 - [BookingSplitResponse]docs/BookingSplitResponse.md
 - [BookingSplitResult]docs/BookingSplitResult.md
 - [BorderRadius]docs/BorderRadius.md
 - [Calendar]docs/Calendar.md
 - [CancelFulfillmentsOffer]docs/CancelFulfillmentsOffer.md
 - [CancelFulfillmentsOfferCollectionResponse]docs/CancelFulfillmentsOfferCollectionResponse.md
 - [CancelFulfillmentsOfferPatchRequest]docs/CancelFulfillmentsOfferPatchRequest.md
 - [CancelFulfillmentsOfferRequest]docs/CancelFulfillmentsOfferRequest.md
 - [CancelFulfillmentsOfferResponse]docs/CancelFulfillmentsOfferResponse.md
 - [CancelFulfillmentsStatus]docs/CancelFulfillmentsStatus.md
 - [Car]docs/Car.md
 - [CarRack]docs/CarRack.md
 - [CarSpecification]docs/CarSpecification.md
 - [CardReference]docs/CardReference.md
 - [CardTypeReference]docs/CardTypeReference.md
 - [CarrierConstraint]docs/CarrierConstraint.md
 - [CarrierFilter]docs/CarrierFilter.md
 - [ClaimedJourneyDetails]docs/ClaimedJourneyDetails.md
 - [ClaimedLeg]docs/ClaimedLeg.md
 - [Coach]docs/Coach.md
 - [CoachAvailability]docs/CoachAvailability.md
 - [CoachDeckLayout]docs/CoachDeckLayout.md
 - [CoachDeckLayoutCollectionResponse]docs/CoachDeckLayoutCollectionResponse.md
 - [CoachDeckLayoutResponse]docs/CoachDeckLayoutResponse.md
 - [CoachLayout]docs/CoachLayout.md
 - [CoachLayoutCollectionResponse]docs/CoachLayoutCollectionResponse.md
 - [CoachLayoutCompartmentNumber]docs/CoachLayoutCompartmentNumber.md
 - [CoachLayoutDirectedInternal]docs/CoachLayoutDirectedInternal.md
 - [CoachLayoutGridSize]docs/CoachLayoutGridSize.md
 - [CoachLayoutInternal]docs/CoachLayoutInternal.md
 - [CoachLayoutPlace]docs/CoachLayoutPlace.md
 - [CoachLayoutResponse]docs/CoachLayoutResponse.md
 - [CoachLayoutSign]docs/CoachLayoutSign.md
 - [CombinationTag]docs/CombinationTag.md
 - [CompanyDetail]docs/CompanyDetail.md
 - [Compartment]docs/Compartment.md
 - [CompartmentAvailability]docs/CompartmentAvailability.md
 - [CompartmentPreSelection]docs/CompartmentPreSelection.md
 - [Complaint]docs/Complaint.md
 - [ComplaintDecision]docs/ComplaintDecision.md
 - [ComplaintPatchRequest]docs/ComplaintPatchRequest.md
 - [ComplaintResponse]docs/ComplaintResponse.md
 - [Condition]docs/Condition.md
 - [ContactDetail]docs/ContactDetail.md
 - [ContextType]docs/ContextType.md
 - [ContinuousLeg]docs/ContinuousLeg.md
 - [ContinuousService]docs/ContinuousService.md
 - [ContinuousServiceAvailabilityScope]docs/ContinuousServiceAvailabilityScope.md
 - [ContinuousServiceBookingPart]docs/ContinuousServiceBookingPart.md
 - [ContinuousServiceOfferPart]docs/ContinuousServiceOfferPart.md
 - [ContinuousServicePickUpPlace]docs/ContinuousServicePickUpPlace.md
 - [ContinuousServiceUsage]docs/ContinuousServiceUsage.md
 - [ContinuousServiceUsagePatchRequest]docs/ContinuousServiceUsagePatchRequest.md
 - [ContinuousServiceVehicleAvailability]docs/ContinuousServiceVehicleAvailability.md
 - [ContinuousServiceVehicleSelection]docs/ContinuousServiceVehicleSelection.md
 - [ContinuousServicesAvailabilityResponse]docs/ContinuousServicesAvailabilityResponse.md
 - [CorporateCode]docs/CorporateCode.md
 - [CurrencyConversion]docs/CurrencyConversion.md
 - [CustomerComplaint]docs/CustomerComplaint.md
 - [DateRange]docs/DateRange.md
 - [DatedJourney]docs/DatedJourney.md
 - [DayTravelAccountUnit]docs/DayTravelAccountUnit.md
 - [DecisionType]docs/DecisionType.md
 - [DeckAvailability]docs/DeckAvailability.md
 - [DirectionChange]docs/DirectionChange.md
 - [DirectionType]docs/DirectionType.md
 - [Document]docs/Document.md
 - [DocumentCollectionResponse]docs/DocumentCollectionResponse.md
 - [DocumentFormat]docs/DocumentFormat.md
 - [DocumentRequest]docs/DocumentRequest.md
 - [DocumentResponse]docs/DocumentResponse.md
 - [DocumentScope]docs/DocumentScope.md
 - [DocumentSpecification]docs/DocumentSpecification.md
 - [DocumentType]docs/DocumentType.md
 - [Event]docs/Event.md
 - [EventDetail]docs/EventDetail.md
 - [EventType]docs/EventType.md
 - [ExchangeBreakdownItem]docs/ExchangeBreakdownItem.md
 - [ExchangeOffer]docs/ExchangeOffer.md
 - [ExchangeOfferCollectionRequest]docs/ExchangeOfferCollectionRequest.md
 - [ExchangeOfferCollectionResponse]docs/ExchangeOfferCollectionResponse.md
 - [ExchangeOfferCollectionResponseContent]docs/ExchangeOfferCollectionResponseContent.md
 - [ExchangeOperation]docs/ExchangeOperation.md
 - [ExchangeOperationPatchRequest]docs/ExchangeOperationPatchRequest.md
 - [ExchangeOperationRequest]docs/ExchangeOperationRequest.md
 - [ExchangeOperationResponse]docs/ExchangeOperationResponse.md
 - [ExchangeOperationResponseContent]docs/ExchangeOperationResponseContent.md
 - [ExchangeStatus]docs/ExchangeStatus.md
 - [ExchangeableType]docs/ExchangeableType.md
 - [ExcludedTimeRange]docs/ExcludedTimeRange.md
 - [ExclusionScope]docs/ExclusionScope.md
 - [Fare]docs/Fare.md
 - [FareCombinationModel]docs/FareCombinationModel.md
 - [FareConnectionPoint]docs/FareConnectionPoint.md
 - [FareConnectionPointRef]docs/FareConnectionPointRef.md
 - [FareReferenceStation]docs/FareReferenceStation.md
 - [Fee]docs/Fee.md
 - [FeeStatus]docs/FeeStatus.md
 - [Fulfillment]docs/Fulfillment.md
 - [FulfillmentActivationPatchRequest]docs/FulfillmentActivationPatchRequest.md
 - [FulfillmentCollectionResponse]docs/FulfillmentCollectionResponse.md
 - [FulfillmentConstraint]docs/FulfillmentConstraint.md
 - [FulfillmentDocument]docs/FulfillmentDocument.md
 - [FulfillmentItemSecurityFeature]docs/FulfillmentItemSecurityFeature.md
 - [FulfillmentItemSecurityFeatureLinks]docs/FulfillmentItemSecurityFeatureLinks.md
 - [FulfillmentOption]docs/FulfillmentOption.md
 - [FulfillmentPart]docs/FulfillmentPart.md
 - [FulfillmentPatchRequest]docs/FulfillmentPatchRequest.md
 - [FulfillmentPostRequest]docs/FulfillmentPostRequest.md
 - [FulfillmentResponse]docs/FulfillmentResponse.md
 - [FulfillmentStatus]docs/FulfillmentStatus.md
 - [FulfillmentUsage]docs/FulfillmentUsage.md
 - [Gender]docs/Gender.md
 - [GeneralAttribute]docs/GeneralAttribute.md
 - [GeoPosition]docs/GeoPosition.md
 - [GeoPositionRef]docs/GeoPositionRef.md
 - [GrantedReductionAmount]docs/GrantedReductionAmount.md
 - [GrantedReductionAmounts]docs/GrantedReductionAmounts.md
 - [GraphicElement]docs/GraphicElement.md
 - [GridDimension]docs/GridDimension.md
 - [GridPosition]docs/GridPosition.md
 - [HistoryStatus]docs/HistoryStatus.md
 - [IdentificationCard]docs/IdentificationCard.md
 - [IndicatedConsumption]docs/IndicatedConsumption.md
 - [InitialPlaceInput]docs/InitialPlaceInput.md
 - [Intermediate]docs/Intermediate.md
 - [IntermediateSpecification]docs/IntermediateSpecification.md
 - [LayoutCoordinates]docs/LayoutCoordinates.md
 - [LegAttribute]docs/LegAttribute.md
 - [LegacyAccountingIdentifier]docs/LegacyAccountingIdentifier.md
 - [LegacyReservationParameter]docs/LegacyReservationParameter.md
 - [LegacyReservationTariff]docs/LegacyReservationTariff.md
 - [Line]docs/Line.md
 - [Link]docs/Link.md
 - [LuggageConstraint]docs/LuggageConstraint.md
 - [LuggageDimension]docs/LuggageDimension.md
 - [LuggageDimensionEnum]docs/LuggageDimensionEnum.md
 - [LuggageRestriction]docs/LuggageRestriction.md
 - [LuggageRestrictionRuleEnum]docs/LuggageRestrictionRuleEnum.md
 - [Mode]docs/Mode.md
 - [ModeFilter]docs/ModeFilter.md
 - [MoneyTravelAccountUnit]docs/MoneyTravelAccountUnit.md
 - [MotorCycle]docs/MotorCycle.md
 - [MotorcycleSpecification]docs/MotorcycleSpecification.md
 - [MountingType]docs/MountingType.md
 - [MultiRideAccount]docs/MultiRideAccount.md
 - [MultiRideBalance]docs/MultiRideBalance.md
 - [NamedCompany]docs/NamedCompany.md
 - [NamedTravelAccountUnit]docs/NamedTravelAccountUnit.md
 - [NonTripSearchCriteria]docs/NonTripSearchCriteria.md
 - [NotVia]docs/NotVia.md
 - [Offer]docs/Offer.md
 - [OfferCollectionRequest]docs/OfferCollectionRequest.md
 - [OfferCollectionResponse]docs/OfferCollectionResponse.md
 - [OfferCollectionResponseContent]docs/OfferCollectionResponseContent.md
 - [OfferMode]docs/OfferMode.md
 - [OfferOverviewRoute]docs/OfferOverviewRoute.md
 - [OfferOverviewRouteRequest]docs/OfferOverviewRouteRequest.md
 - [OfferOverviewRouteResponse]docs/OfferOverviewRouteResponse.md
 - [OfferOverviewTrip]docs/OfferOverviewTrip.md
 - [OfferOverviewTripRequest]docs/OfferOverviewTripRequest.md
 - [OfferOverviewTripResponse]docs/OfferOverviewTripResponse.md
 - [OfferPartReference]docs/OfferPartReference.md
 - [OfferPartType]docs/OfferPartType.md
 - [OfferSearchCriteria]docs/OfferSearchCriteria.md
 - [OfferSelection]docs/OfferSelection.md
 - [OfferSummary]docs/OfferSummary.md
 - [OfferTag]docs/OfferTag.md
 - [OnHoldOffer]docs/OnHoldOffer.md
 - [OnHoldOfferRequest]docs/OnHoldOfferRequest.md
 - [OnHoldOfferResponse]docs/OnHoldOfferResponse.md
 - [OperatingDays]docs/OperatingDays.md
 - [OsmTag]docs/OsmTag.md
 - [PartReference]docs/PartReference.md
 - [Passenger]docs/Passenger.md
 - [PassengerCategory]docs/PassengerCategory.md
 - [PassengerConstraints]docs/PassengerConstraints.md
 - [PassengerResponse]docs/PassengerResponse.md
 - [PassengerSearchRequest]docs/PassengerSearchRequest.md
 - [PassengerSpecification]docs/PassengerSpecification.md
 - [PassengersBatchUpdateRequest]docs/PassengersBatchUpdateRequest.md
 - [PassengersCollectionResponse]docs/PassengersCollectionResponse.md
 - [PaymentMethod]docs/PaymentMethod.md
 - [PersonDetail]docs/PersonDetail.md
 - [Place]docs/Place.md
 - [PlaceAllocation]docs/PlaceAllocation.md
 - [PlaceAvailability]docs/PlaceAvailability.md
 - [PlaceAvailabilityCollectionResponse]docs/PlaceAvailabilityCollectionResponse.md
 - [PlaceAvailabilityMapRequest]docs/PlaceAvailabilityMapRequest.md
 - [PlaceAvailabilityMapResponse]docs/PlaceAvailabilityMapResponse.md
 - [PlaceAvailabilityResponse]docs/PlaceAvailabilityResponse.md
 - [PlaceGroup]docs/PlaceGroup.md
 - [PlaceLayout]docs/PlaceLayout.md
 - [PlaceParam]docs/PlaceParam.md
 - [PlacePosition]docs/PlacePosition.md
 - [PlacePreSelection]docs/PlacePreSelection.md
 - [PlacePreferenceGroup]docs/PlacePreferenceGroup.md
 - [PlaceRef]docs/PlaceRef.md
 - [PlaceRequest]docs/PlaceRequest.md
 - [PlaceResponse]docs/PlaceResponse.md
 - [PlaceRestriction]docs/PlaceRestriction.md
 - [PlaceSelection]docs/PlaceSelection.md
 - [PlaceType]docs/PlaceType.md
 - [PlaceUsage]docs/PlaceUsage.md
 - [PointOfInterest]docs/PointOfInterest.md
 - [PointOfInterestCategory]docs/PointOfInterestCategory.md
 - [PointOfInterestFilter]docs/PointOfInterestFilter.md
 - [PointOfInterestRef]docs/PointOfInterestRef.md
 - [Polygon]docs/Polygon.md
 - [PostalAddress]docs/PostalAddress.md
 - [Price]docs/Price.md
 - [Problem]docs/Problem.md
 - [ProblemPointer]docs/ProblemPointer.md
 - [Product]docs/Product.md
 - [ProductCategory]docs/ProductCategory.md
 - [ProductCollectionResponse]docs/ProductCollectionResponse.md
 - [ProductLegAssociation]docs/ProductLegAssociation.md
 - [ProductRequestOfferSelection]docs/ProductRequestOfferSelection.md
 - [ProductResponse]docs/ProductResponse.md
 - [ProductSearchRequest]docs/ProductSearchRequest.md
 - [ProductSearchResponse]docs/ProductSearchResponse.md
 - [ProductSummary]docs/ProductSummary.md
 - [ProductTagGroup]docs/ProductTagGroup.md
 - [ProductTagName]docs/ProductTagName.md
 - [ProductTagsResponse]docs/ProductTagsResponse.md
 - [PromotionCode]docs/PromotionCode.md
 - [Purchaser]docs/Purchaser.md
 - [PurchaserResponse]docs/PurchaserResponse.md
 - [PurchaserSearchRequest]docs/PurchaserSearchRequest.md
 - [PurchaserSpecification]docs/PurchaserSpecification.md
 - [Quantity]docs/Quantity.md
 - [RectangleGeometry]docs/RectangleGeometry.md
 - [ReductionCardAccount]docs/ReductionCardAccount.md
 - [ReductionCardCollectionResponse]docs/ReductionCardCollectionResponse.md
 - [ReductionCardType]docs/ReductionCardType.md
 - [ReductionGranted]docs/ReductionGranted.md
 - [RefundOffer]docs/RefundOffer.md
 - [RefundOfferBreakdownItem]docs/RefundOfferBreakdownItem.md
 - [RefundOfferCollectionResponse]docs/RefundOfferCollectionResponse.md
 - [RefundOfferPatchRequest]docs/RefundOfferPatchRequest.md
 - [RefundOfferRequest]docs/RefundOfferRequest.md
 - [RefundOfferResponse]docs/RefundOfferResponse.md
 - [RefundSpecification]docs/RefundSpecification.md
 - [RefundStatus]docs/RefundStatus.md
 - [RefundType]docs/RefundType.md
 - [RegionalConstraint]docs/RegionalConstraint.md
 - [RegionalValidity]docs/RegionalValidity.md
 - [RegionalValiditySummary]docs/RegionalValiditySummary.md
 - [RegulatoryCondition]docs/RegulatoryCondition.md
 - [Reimbursement]docs/Reimbursement.md
 - [ReimbursementDecision]docs/ReimbursementDecision.md
 - [ReimbursementMethod]docs/ReimbursementMethod.md
 - [ReimbursementPatchRequest]docs/ReimbursementPatchRequest.md
 - [ReimbursementRequest]docs/ReimbursementRequest.md
 - [ReimbursementResponse]docs/ReimbursementResponse.md
 - [ReimbursementStatus]docs/ReimbursementStatus.md
 - [ReleaseOffer]docs/ReleaseOffer.md
 - [ReleaseOfferCollectionResponse]docs/ReleaseOfferCollectionResponse.md
 - [ReleaseOfferPatchRequest]docs/ReleaseOfferPatchRequest.md
 - [ReleaseOfferRequest]docs/ReleaseOfferRequest.md
 - [ReleaseOfferRequestAsyncResponse]docs/ReleaseOfferRequestAsyncResponse.md
 - [ReleaseOfferResponse]docs/ReleaseOfferResponse.md
 - [ReleaseStatus]docs/ReleaseStatus.md
 - [Reservation]docs/Reservation.md
 - [ReservationGroup]docs/ReservationGroup.md
 - [ReservationOfferPart]docs/ReservationOfferPart.md
 - [ReservationReference]docs/ReservationReference.md
 - [ReservationRelation]docs/ReservationRelation.md
 - [ReservationSelection]docs/ReservationSelection.md
 - [ReservedPlace]docs/ReservedPlace.md
 - [Resource]docs/Resource.md
 - [ResourceType]docs/ResourceType.md
 - [ReturnConstraint]docs/ReturnConstraint.md
 - [ReturnSearchParameters]docs/ReturnSearchParameters.md
 - [Route]docs/Route.md
 - [RouteItem]docs/RouteItem.md
 - [RouteSpecification]docs/RouteSpecification.md
 - [Section]docs/Section.md
 - [SecurityElementFormat]docs/SecurityElementFormat.md
 - [SecurityElementType]docs/SecurityElementType.md
 - [SecurityFeatureType]docs/SecurityFeatureType.md
 - [SelectedAccommodation]docs/SelectedAccommodation.md
 - [SelectedPlace]docs/SelectedPlace.md
 - [SelectedReferencePlace]docs/SelectedReferencePlace.md
 - [SelectionFee]docs/SelectionFee.md
 - [ServiceBrandFilter]docs/ServiceBrandFilter.md
 - [ServiceClass]docs/ServiceClass.md
 - [ServiceConstraint]docs/ServiceConstraint.md
 - [ServiceIcon]docs/ServiceIcon.md
 - [ServiceStatus]docs/ServiceStatus.md
 - [ServiceTime]docs/ServiceTime.md
 - [SpecificPlaceAvailability]docs/SpecificPlaceAvailability.md
 - [StationSet]docs/StationSet.md
 - [StopBehavior]docs/StopBehavior.md
 - [StopCallStatus]docs/StopCallStatus.md
 - [StopPlace]docs/StopPlace.md
 - [StopPlaceRef]docs/StopPlaceRef.md
 - [SupportingDocument]docs/SupportingDocument.md
 - [Symbology]docs/Symbology.md
 - [Text]docs/Text.md
 - [TextElement]docs/TextElement.md
 - [TextElementType]docs/TextElementType.md
 - [TimeFrameSegmentation]docs/TimeFrameSegmentation.md
 - [TimeUnit]docs/TimeUnit.md
 - [TimedLeg]docs/TimedLeg.md
 - [TimedLegSpecification]docs/TimedLegSpecification.md
 - [Tip]docs/Tip.md
 - [TrainLink]docs/TrainLink.md
 - [TrainValidity]docs/TrainValidity.md
 - [TrainValidityScope]docs/TrainValidityScope.md
 - [TransferLeg]docs/TransferLeg.md
 - [Translation]docs/Translation.md
 - [Transportable]docs/Transportable.md
 - [TransportableSpecification]docs/TransportableSpecification.md
 - [TravelAccountConsumption]docs/TravelAccountConsumption.md
 - [TravelAccountResponse]docs/TravelAccountResponse.md
 - [TravelAccountResponseContent]docs/TravelAccountResponseContent.md
 - [TravelAccountType]docs/TravelAccountType.md
 - [TravelPassAccount]docs/TravelPassAccount.md
 - [TravelValidity]docs/TravelValidity.md
 - [TravelValidityRange]docs/TravelValidityRange.md
 - [Trip]docs/Trip.md
 - [TripAllocationConstraint]docs/TripAllocationConstraint.md
 - [TripChangeCriteria]docs/TripChangeCriteria.md
 - [TripCollectionResponse]docs/TripCollectionResponse.md
 - [TripCoverage]docs/TripCoverage.md
 - [TripDataFilter]docs/TripDataFilter.md
 - [TripDirectionType]docs/TripDirectionType.md
 - [TripInterruptionConstraint]docs/TripInterruptionConstraint.md
 - [TripLeg]docs/TripLeg.md
 - [TripLegCoverage]docs/TripLegCoverage.md
 - [TripLegSpecification]docs/TripLegSpecification.md
 - [TripMobilityFilter]docs/TripMobilityFilter.md
 - [TripParameters]docs/TripParameters.md
 - [TripResponse]docs/TripResponse.md
 - [TripResponseContent]docs/TripResponseContent.md
 - [TripResponseParameters]docs/TripResponseParameters.md
 - [TripResult]docs/TripResult.md
 - [TripSearchCriteria]docs/TripSearchCriteria.md
 - [TripSection]docs/TripSection.md
 - [TripSpecification]docs/TripSpecification.md
 - [TripSpecificationSummary]docs/TripSpecificationSummary.md
 - [TripStatus]docs/TripStatus.md
 - [TripSummary]docs/TripSummary.md
 - [TripTravelAccountUnit]docs/TripTravelAccountUnit.md
 - [TripVia]docs/TripVia.md
 - [TripsCollectionResponseContent]docs/TripsCollectionResponseContent.md
 - [ValidityRange]docs/ValidityRange.md
 - [Vat]docs/Vat.md
 - [Vehicle]docs/Vehicle.md
 - [VehicleAvailability]docs/VehicleAvailability.md
 - [VehicleFilter]docs/VehicleFilter.md
 - [VoucherInformation]docs/VoucherInformation.md
 - [Warning]docs/Warning.md
 - [WarningCollection]docs/WarningCollection.md
 - [Zone]docs/Zone.md
 - [ZoneCollectionResponse]docs/ZoneCollectionResponse.md
 - [ZoneDefinition]docs/ZoneDefinition.md


To get access to the crate's generated documentation, use:

```
cargo doc --open
```

## Author

osdm@uic.org