osdm-sys 0.1.0-alpha.2

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
/*
 * UIC 90918-10 - 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/) 
 *
 * The version of the OpenAPI document: 3.7.0
 * Contact: osdm@uic.org
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[serde(tag = "objectType")]
pub enum AbstractBookingPart {
    #[serde(rename="Admission")]
    Admission {
        #[serde(rename = "id")]
        id: String,
        #[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
        summary: Option<String>,
        /// Validity of offer towards passenger 
        #[serde(rename = "createdOn")]
        created_on: String,
        /// confirmationTimeLimit in booking should be used. Date until the booking part needs to be confirmed. Must be provided for a booking part in PREBOOKED stated. For later states, the value is ignored and can be null. 
        #[serde(rename = "confirmableUntil", skip_serializing_if = "Option::is_none")]
        confirmable_until: Option<String>,
        #[serde(rename = "validFrom")]
        valid_from: String,
        /// Validity of offer towards passenger 
        #[serde(rename = "validUntil", skip_serializing_if = "Option::is_none")]
        valid_until: Option<String>,
        #[serde(rename = "confirmedOn", skip_serializing_if = "Option::is_none")]
        confirmed_on: Option<String>,
        #[serde(rename = "confirmedFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        confirmed_fulfillment_options: Option<Box<models::FulfillmentOption>>,
        #[serde(rename = "price")]
        price: Box<models::Price>,
        #[serde(rename = "refundAmount", skip_serializing_if = "Option::is_none")]
        refund_amount: Option<Box<models::Price>>,
        #[serde(rename = "tripCoverage", skip_serializing_if = "Option::is_none")]
        trip_coverage: Option<Box<models::TripCoverage>>,
        #[serde(rename = "inboundTripCoverage", skip_serializing_if = "Option::is_none")]
        inbound_trip_coverage: Option<Box<models::TripCoverage>>,
        /// Id of the product representing the commercial attributes of this booking part. Although not currently mandatory, this attribute should in all cases be filled in order to allow matching a booking response to the data in the booking request 
        #[serde(rename = "summaryProductId", skip_serializing_if = "Option::is_none")]
        summary_product_id: Option<String>,
        /// In offer mode, in almost all cases exactly one product is referenced. Only on some French trips consisting of a TGV and a TER two products need to be used. In fare mode, no product exists as first needs to created from the different fares. 
        #[serde(rename = "products", skip_serializing_if = "Option::is_none")]
        products: Option<Vec<models::ProductLegAssociation>>,
        #[serde(rename = "status")]
        status: models::BookingPartStatus,
        /// payment status in post-payment scenarios
        #[serde(rename = "pricingStatus", skip_serializing_if = "Option::is_none")]
        pricing_status: Option<String>,
        #[serde(rename = "offerMode", skip_serializing_if = "Option::is_none")]
        offer_mode: Option<models::OfferMode>,
        /// The unique booking code for the part in the provider system. 
        #[serde(rename = "bookingPartCode", skip_serializing_if = "Option::is_none")]
        booking_part_code: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "distributorBookingRef", skip_serializing_if = "Option::is_none")]
        distributor_booking_ref: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "retailerBookingRef", skip_serializing_if = "Option::is_none")]
        retailer_booking_ref: Option<String>,
        /// Id of the passenger 
        #[serde(rename = "passengerIds")]
        passenger_ids: Vec<String>,
        #[serde(rename = "availableFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        available_fulfillment_options: Option<Vec<models::FulfillmentOption>>,
        #[serde(rename = "refundable")]
        refundable: models::RefundType,
        #[serde(rename = "exchangeable")]
        exchangeable: models::ExchangeableType,
        /// Fine grained specification of the after sale condition of the booking. 
        #[serde(rename = "afterSaleConditions", skip_serializing_if = "Option::is_none")]
        after_sale_conditions: Option<Vec<models::AfterSaleCondition>>,
        #[serde(rename = "afterSalesOverrideDetails", skip_serializing_if = "Option::is_none")]
        after_sales_override_details: Option<Box<models::AfterSalesOverrideDetails>>,
        #[serde(rename = "appliedCorporateCodes", skip_serializing_if = "Option::is_none")]
        applied_corporate_codes: Option<Vec<models::CorporateCode>>,
        #[serde(rename = "appliedPassengerTypes", skip_serializing_if = "Option::is_none")]
        applied_passenger_types: Option<Vec<models::AppliedPassengerType>>,
        #[serde(rename = "appliedPromotionCodes", skip_serializing_if = "Option::is_none")]
        applied_promotion_codes: Option<Vec<models::PromotionCode>>,
        #[serde(rename = "appliedReductions", skip_serializing_if = "Option::is_none")]
        applied_reductions: Option<Vec<models::CardReference>>,
        #[serde(rename = "indicatedConsumption", skip_serializing_if = "Option::is_none")]
        indicated_consumption: Option<Box<models::IndicatedConsumption>>,
        #[serde(rename = "accountingRef", skip_serializing_if = "Option::is_none")]
        accounting_ref: Option<Box<models::AccountingRef>>,
        #[serde(rename = "grantedReductionAmounts", skip_serializing_if = "Option::is_none")]
        granted_reduction_amounts: Option<Box<models::GrantedReductionAmounts>>,
    },
    #[serde(rename="Ancillary")]
    Ancillary {
        #[serde(rename = "id")]
        id: String,
        #[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
        summary: Option<String>,
        /// Validity of offer towards passenger 
        #[serde(rename = "createdOn")]
        created_on: String,
        /// confirmationTimeLimit in booking should be used. Date until the booking part needs to be confirmed. Must be provided for a booking part in PREBOOKED stated. For later states, the value is ignored and can be null. 
        #[serde(rename = "confirmableUntil", skip_serializing_if = "Option::is_none")]
        confirmable_until: Option<String>,
        #[serde(rename = "validFrom")]
        valid_from: String,
        /// Validity of offer towards passenger 
        #[serde(rename = "validUntil", skip_serializing_if = "Option::is_none")]
        valid_until: Option<String>,
        #[serde(rename = "confirmedOn", skip_serializing_if = "Option::is_none")]
        confirmed_on: Option<String>,
        #[serde(rename = "confirmedFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        confirmed_fulfillment_options: Option<Box<models::FulfillmentOption>>,
        #[serde(rename = "price")]
        price: Box<models::Price>,
        #[serde(rename = "refundAmount", skip_serializing_if = "Option::is_none")]
        refund_amount: Option<Box<models::Price>>,
        #[serde(rename = "tripCoverage", skip_serializing_if = "Option::is_none")]
        trip_coverage: Option<Box<models::TripCoverage>>,
        #[serde(rename = "inboundTripCoverage", skip_serializing_if = "Option::is_none")]
        inbound_trip_coverage: Option<Box<models::TripCoverage>>,
        /// Id of the product representing the commercial attributes of this booking part. Although not currently mandatory, this attribute should in all cases be filled in order to allow matching a booking response to the data in the booking request 
        #[serde(rename = "summaryProductId", skip_serializing_if = "Option::is_none")]
        summary_product_id: Option<String>,
        /// In offer mode, in almost all cases exactly one product is referenced. Only on some French trips consisting of a TGV and a TER two products need to be used. In fare mode, no product exists as first needs to created from the different fares. 
        #[serde(rename = "products", skip_serializing_if = "Option::is_none")]
        products: Option<Vec<models::ProductLegAssociation>>,
        #[serde(rename = "status")]
        status: models::BookingPartStatus,
        /// payment status in post-payment scenarios
        #[serde(rename = "pricingStatus", skip_serializing_if = "Option::is_none")]
        pricing_status: Option<String>,
        #[serde(rename = "offerMode", skip_serializing_if = "Option::is_none")]
        offer_mode: Option<models::OfferMode>,
        /// The unique booking code for the part in the provider system. 
        #[serde(rename = "bookingPartCode", skip_serializing_if = "Option::is_none")]
        booking_part_code: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "distributorBookingRef", skip_serializing_if = "Option::is_none")]
        distributor_booking_ref: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "retailerBookingRef", skip_serializing_if = "Option::is_none")]
        retailer_booking_ref: Option<String>,
        /// Id of the passenger 
        #[serde(rename = "passengerIds")]
        passenger_ids: Vec<String>,
        #[serde(rename = "availableFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        available_fulfillment_options: Option<Vec<models::FulfillmentOption>>,
        #[serde(rename = "refundable")]
        refundable: models::RefundType,
        #[serde(rename = "exchangeable")]
        exchangeable: models::ExchangeableType,
        /// Fine grained specification of the after sale condition of the booking. 
        #[serde(rename = "afterSaleConditions", skip_serializing_if = "Option::is_none")]
        after_sale_conditions: Option<Vec<models::AfterSaleCondition>>,
        #[serde(rename = "afterSalesOverrideDetails", skip_serializing_if = "Option::is_none")]
        after_sales_override_details: Option<Box<models::AfterSalesOverrideDetails>>,
        #[serde(rename = "appliedCorporateCodes", skip_serializing_if = "Option::is_none")]
        applied_corporate_codes: Option<Vec<models::CorporateCode>>,
        #[serde(rename = "appliedPassengerTypes", skip_serializing_if = "Option::is_none")]
        applied_passenger_types: Option<Vec<models::AppliedPassengerType>>,
        #[serde(rename = "appliedPromotionCodes", skip_serializing_if = "Option::is_none")]
        applied_promotion_codes: Option<Vec<models::PromotionCode>>,
        #[serde(rename = "appliedReductions", skip_serializing_if = "Option::is_none")]
        applied_reductions: Option<Vec<models::CardReference>>,
        #[serde(rename = "indicatedConsumption", skip_serializing_if = "Option::is_none")]
        indicated_consumption: Option<Box<models::IndicatedConsumption>>,
        #[serde(rename = "accountingRef", skip_serializing_if = "Option::is_none")]
        accounting_ref: Option<Box<models::AccountingRef>>,
        #[serde(rename = "grantedReductionAmounts", skip_serializing_if = "Option::is_none")]
        granted_reduction_amounts: Option<Box<models::GrantedReductionAmounts>>,
    },
    #[serde(rename="ContinuousServiceBookingPart")]
    ContinuousServiceBookingPart {
        #[serde(rename = "id")]
        id: String,
        #[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
        summary: Option<String>,
        /// Validity of offer towards passenger 
        #[serde(rename = "createdOn")]
        created_on: String,
        /// confirmationTimeLimit in booking should be used. Date until the booking part needs to be confirmed. Must be provided for a booking part in PREBOOKED stated. For later states, the value is ignored and can be null. 
        #[serde(rename = "confirmableUntil", skip_serializing_if = "Option::is_none")]
        confirmable_until: Option<String>,
        #[serde(rename = "validFrom")]
        valid_from: String,
        /// Validity of offer towards passenger 
        #[serde(rename = "validUntil", skip_serializing_if = "Option::is_none")]
        valid_until: Option<String>,
        #[serde(rename = "confirmedOn", skip_serializing_if = "Option::is_none")]
        confirmed_on: Option<String>,
        #[serde(rename = "confirmedFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        confirmed_fulfillment_options: Option<Box<models::FulfillmentOption>>,
        #[serde(rename = "price")]
        price: Box<models::Price>,
        #[serde(rename = "refundAmount", skip_serializing_if = "Option::is_none")]
        refund_amount: Option<Box<models::Price>>,
        #[serde(rename = "tripCoverage", skip_serializing_if = "Option::is_none")]
        trip_coverage: Option<Box<models::TripCoverage>>,
        #[serde(rename = "inboundTripCoverage", skip_serializing_if = "Option::is_none")]
        inbound_trip_coverage: Option<Box<models::TripCoverage>>,
        /// Id of the product representing the commercial attributes of this booking part. Although not currently mandatory, this attribute should in all cases be filled in order to allow matching a booking response to the data in the booking request 
        #[serde(rename = "summaryProductId", skip_serializing_if = "Option::is_none")]
        summary_product_id: Option<String>,
        /// In offer mode, in almost all cases exactly one product is referenced. Only on some French trips consisting of a TGV and a TER two products need to be used. In fare mode, no product exists as first needs to created from the different fares. 
        #[serde(rename = "products", skip_serializing_if = "Option::is_none")]
        products: Option<Vec<models::ProductLegAssociation>>,
        #[serde(rename = "status")]
        status: models::BookingPartStatus,
        /// payment status in post-payment scenarios
        #[serde(rename = "pricingStatus", skip_serializing_if = "Option::is_none")]
        pricing_status: Option<String>,
        #[serde(rename = "offerMode", skip_serializing_if = "Option::is_none")]
        offer_mode: Option<models::OfferMode>,
        /// The unique booking code for the part in the provider system. 
        #[serde(rename = "bookingPartCode", skip_serializing_if = "Option::is_none")]
        booking_part_code: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "distributorBookingRef", skip_serializing_if = "Option::is_none")]
        distributor_booking_ref: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "retailerBookingRef", skip_serializing_if = "Option::is_none")]
        retailer_booking_ref: Option<String>,
        /// Id of the passenger 
        #[serde(rename = "passengerIds")]
        passenger_ids: Vec<String>,
        #[serde(rename = "availableFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        available_fulfillment_options: Option<Vec<models::FulfillmentOption>>,
        #[serde(rename = "refundable")]
        refundable: models::RefundType,
        #[serde(rename = "exchangeable")]
        exchangeable: models::ExchangeableType,
        /// Fine grained specification of the after sale condition of the booking. 
        #[serde(rename = "afterSaleConditions", skip_serializing_if = "Option::is_none")]
        after_sale_conditions: Option<Vec<models::AfterSaleCondition>>,
        #[serde(rename = "afterSalesOverrideDetails", skip_serializing_if = "Option::is_none")]
        after_sales_override_details: Option<Box<models::AfterSalesOverrideDetails>>,
        #[serde(rename = "appliedCorporateCodes", skip_serializing_if = "Option::is_none")]
        applied_corporate_codes: Option<Vec<models::CorporateCode>>,
        #[serde(rename = "appliedPassengerTypes", skip_serializing_if = "Option::is_none")]
        applied_passenger_types: Option<Vec<models::AppliedPassengerType>>,
        #[serde(rename = "appliedPromotionCodes", skip_serializing_if = "Option::is_none")]
        applied_promotion_codes: Option<Vec<models::PromotionCode>>,
        #[serde(rename = "appliedReductions", skip_serializing_if = "Option::is_none")]
        applied_reductions: Option<Vec<models::CardReference>>,
        #[serde(rename = "indicatedConsumption", skip_serializing_if = "Option::is_none")]
        indicated_consumption: Option<Box<models::IndicatedConsumption>>,
        #[serde(rename = "accountingRef", skip_serializing_if = "Option::is_none")]
        accounting_ref: Option<Box<models::AccountingRef>>,
        #[serde(rename = "grantedReductionAmounts", skip_serializing_if = "Option::is_none")]
        granted_reduction_amounts: Option<Box<models::GrantedReductionAmounts>>,
    },
    #[serde(rename="ContinuousServiceOfferPart")]
    ContinuousServiceOfferPart {
        #[serde(rename = "id")]
        id: String,
        #[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
        summary: Option<String>,
        /// Validity of offer towards passenger 
        #[serde(rename = "createdOn")]
        created_on: String,
        /// confirmationTimeLimit in booking should be used. Date until the booking part needs to be confirmed. Must be provided for a booking part in PREBOOKED stated. For later states, the value is ignored and can be null. 
        #[serde(rename = "confirmableUntil", skip_serializing_if = "Option::is_none")]
        confirmable_until: Option<String>,
        #[serde(rename = "validFrom")]
        valid_from: String,
        /// Validity of offer towards passenger 
        #[serde(rename = "validUntil", skip_serializing_if = "Option::is_none")]
        valid_until: Option<String>,
        #[serde(rename = "confirmedOn", skip_serializing_if = "Option::is_none")]
        confirmed_on: Option<String>,
        #[serde(rename = "confirmedFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        confirmed_fulfillment_options: Option<Box<models::FulfillmentOption>>,
        #[serde(rename = "price")]
        price: Box<models::Price>,
        #[serde(rename = "refundAmount", skip_serializing_if = "Option::is_none")]
        refund_amount: Option<Box<models::Price>>,
        #[serde(rename = "tripCoverage", skip_serializing_if = "Option::is_none")]
        trip_coverage: Option<Box<models::TripCoverage>>,
        #[serde(rename = "inboundTripCoverage", skip_serializing_if = "Option::is_none")]
        inbound_trip_coverage: Option<Box<models::TripCoverage>>,
        /// Id of the product representing the commercial attributes of this booking part. Although not currently mandatory, this attribute should in all cases be filled in order to allow matching a booking response to the data in the booking request 
        #[serde(rename = "summaryProductId", skip_serializing_if = "Option::is_none")]
        summary_product_id: Option<String>,
        /// In offer mode, in almost all cases exactly one product is referenced. Only on some French trips consisting of a TGV and a TER two products need to be used. In fare mode, no product exists as first needs to created from the different fares. 
        #[serde(rename = "products", skip_serializing_if = "Option::is_none")]
        products: Option<Vec<models::ProductLegAssociation>>,
        #[serde(rename = "status")]
        status: models::BookingPartStatus,
        /// payment status in post-payment scenarios
        #[serde(rename = "pricingStatus", skip_serializing_if = "Option::is_none")]
        pricing_status: Option<String>,
        #[serde(rename = "offerMode", skip_serializing_if = "Option::is_none")]
        offer_mode: Option<models::OfferMode>,
        /// The unique booking code for the part in the provider system. 
        #[serde(rename = "bookingPartCode", skip_serializing_if = "Option::is_none")]
        booking_part_code: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "distributorBookingRef", skip_serializing_if = "Option::is_none")]
        distributor_booking_ref: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "retailerBookingRef", skip_serializing_if = "Option::is_none")]
        retailer_booking_ref: Option<String>,
        /// Id of the passenger 
        #[serde(rename = "passengerIds")]
        passenger_ids: Vec<String>,
        #[serde(rename = "availableFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        available_fulfillment_options: Option<Vec<models::FulfillmentOption>>,
        #[serde(rename = "refundable")]
        refundable: models::RefundType,
        #[serde(rename = "exchangeable")]
        exchangeable: models::ExchangeableType,
        /// Fine grained specification of the after sale condition of the booking. 
        #[serde(rename = "afterSaleConditions", skip_serializing_if = "Option::is_none")]
        after_sale_conditions: Option<Vec<models::AfterSaleCondition>>,
        #[serde(rename = "afterSalesOverrideDetails", skip_serializing_if = "Option::is_none")]
        after_sales_override_details: Option<Box<models::AfterSalesOverrideDetails>>,
        #[serde(rename = "appliedCorporateCodes", skip_serializing_if = "Option::is_none")]
        applied_corporate_codes: Option<Vec<models::CorporateCode>>,
        #[serde(rename = "appliedPassengerTypes", skip_serializing_if = "Option::is_none")]
        applied_passenger_types: Option<Vec<models::AppliedPassengerType>>,
        #[serde(rename = "appliedPromotionCodes", skip_serializing_if = "Option::is_none")]
        applied_promotion_codes: Option<Vec<models::PromotionCode>>,
        #[serde(rename = "appliedReductions", skip_serializing_if = "Option::is_none")]
        applied_reductions: Option<Vec<models::CardReference>>,
        #[serde(rename = "indicatedConsumption", skip_serializing_if = "Option::is_none")]
        indicated_consumption: Option<Box<models::IndicatedConsumption>>,
        #[serde(rename = "accountingRef", skip_serializing_if = "Option::is_none")]
        accounting_ref: Option<Box<models::AccountingRef>>,
        #[serde(rename = "grantedReductionAmounts", skip_serializing_if = "Option::is_none")]
        granted_reduction_amounts: Option<Box<models::GrantedReductionAmounts>>,
    },
    #[serde(rename="Reservation")]
    Reservation {
        #[serde(rename = "id")]
        id: String,
        #[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
        summary: Option<String>,
        /// Validity of offer towards passenger 
        #[serde(rename = "createdOn")]
        created_on: String,
        /// confirmationTimeLimit in booking should be used. Date until the booking part needs to be confirmed. Must be provided for a booking part in PREBOOKED stated. For later states, the value is ignored and can be null. 
        #[serde(rename = "confirmableUntil", skip_serializing_if = "Option::is_none")]
        confirmable_until: Option<String>,
        #[serde(rename = "validFrom")]
        valid_from: String,
        /// Validity of offer towards passenger 
        #[serde(rename = "validUntil", skip_serializing_if = "Option::is_none")]
        valid_until: Option<String>,
        #[serde(rename = "confirmedOn", skip_serializing_if = "Option::is_none")]
        confirmed_on: Option<String>,
        #[serde(rename = "confirmedFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        confirmed_fulfillment_options: Option<Box<models::FulfillmentOption>>,
        #[serde(rename = "price")]
        price: Box<models::Price>,
        #[serde(rename = "refundAmount", skip_serializing_if = "Option::is_none")]
        refund_amount: Option<Box<models::Price>>,
        #[serde(rename = "tripCoverage", skip_serializing_if = "Option::is_none")]
        trip_coverage: Option<Box<models::TripCoverage>>,
        #[serde(rename = "inboundTripCoverage", skip_serializing_if = "Option::is_none")]
        inbound_trip_coverage: Option<Box<models::TripCoverage>>,
        /// Id of the product representing the commercial attributes of this booking part. Although not currently mandatory, this attribute should in all cases be filled in order to allow matching a booking response to the data in the booking request 
        #[serde(rename = "summaryProductId", skip_serializing_if = "Option::is_none")]
        summary_product_id: Option<String>,
        /// In offer mode, in almost all cases exactly one product is referenced. Only on some French trips consisting of a TGV and a TER two products need to be used. In fare mode, no product exists as first needs to created from the different fares. 
        #[serde(rename = "products", skip_serializing_if = "Option::is_none")]
        products: Option<Vec<models::ProductLegAssociation>>,
        #[serde(rename = "status")]
        status: models::BookingPartStatus,
        /// payment status in post-payment scenarios
        #[serde(rename = "pricingStatus", skip_serializing_if = "Option::is_none")]
        pricing_status: Option<String>,
        #[serde(rename = "offerMode", skip_serializing_if = "Option::is_none")]
        offer_mode: Option<models::OfferMode>,
        /// The unique booking code for the part in the provider system. 
        #[serde(rename = "bookingPartCode", skip_serializing_if = "Option::is_none")]
        booking_part_code: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "distributorBookingRef", skip_serializing_if = "Option::is_none")]
        distributor_booking_ref: Option<String>,
        /// reference to the booking in the downstream distributor system 
        #[serde(rename = "retailerBookingRef", skip_serializing_if = "Option::is_none")]
        retailer_booking_ref: Option<String>,
        /// Id of the passenger 
        #[serde(rename = "passengerIds")]
        passenger_ids: Vec<String>,
        #[serde(rename = "availableFulfillmentOptions", skip_serializing_if = "Option::is_none")]
        available_fulfillment_options: Option<Vec<models::FulfillmentOption>>,
        #[serde(rename = "refundable")]
        refundable: models::RefundType,
        #[serde(rename = "exchangeable")]
        exchangeable: models::ExchangeableType,
        /// Fine grained specification of the after sale condition of the booking. 
        #[serde(rename = "afterSaleConditions", skip_serializing_if = "Option::is_none")]
        after_sale_conditions: Option<Vec<models::AfterSaleCondition>>,
        #[serde(rename = "afterSalesOverrideDetails", skip_serializing_if = "Option::is_none")]
        after_sales_override_details: Option<Box<models::AfterSalesOverrideDetails>>,
        #[serde(rename = "appliedCorporateCodes", skip_serializing_if = "Option::is_none")]
        applied_corporate_codes: Option<Vec<models::CorporateCode>>,
        #[serde(rename = "appliedPassengerTypes", skip_serializing_if = "Option::is_none")]
        applied_passenger_types: Option<Vec<models::AppliedPassengerType>>,
        #[serde(rename = "appliedPromotionCodes", skip_serializing_if = "Option::is_none")]
        applied_promotion_codes: Option<Vec<models::PromotionCode>>,
        #[serde(rename = "appliedReductions", skip_serializing_if = "Option::is_none")]
        applied_reductions: Option<Vec<models::CardReference>>,
        #[serde(rename = "indicatedConsumption", skip_serializing_if = "Option::is_none")]
        indicated_consumption: Option<Box<models::IndicatedConsumption>>,
        #[serde(rename = "accountingRef", skip_serializing_if = "Option::is_none")]
        accounting_ref: Option<Box<models::AccountingRef>>,
        #[serde(rename = "grantedReductionAmounts", skip_serializing_if = "Option::is_none")]
        granted_reduction_amounts: Option<Box<models::GrantedReductionAmounts>>,
    },
}

impl Default for AbstractBookingPart {
    fn default() -> Self {
        Self::Admission {
            id: Default::default(),
            summary: Default::default(),
            created_on: Default::default(),
            confirmable_until: Default::default(),
            valid_from: Default::default(),
            valid_until: Default::default(),
            confirmed_on: Default::default(),
            confirmed_fulfillment_options: Default::default(),
            price: Default::default(),
            refund_amount: Default::default(),
            trip_coverage: Default::default(),
            inbound_trip_coverage: Default::default(),
            summary_product_id: Default::default(),
            products: Default::default(),
            status: Default::default(),
            pricing_status: Default::default(),
            offer_mode: Default::default(),
            booking_part_code: Default::default(),
            distributor_booking_ref: Default::default(),
            retailer_booking_ref: Default::default(),
            passenger_ids: Default::default(),
            available_fulfillment_options: Default::default(),
            refundable: Default::default(),
            exchangeable: Default::default(),
            after_sale_conditions: Default::default(),
            after_sales_override_details: Default::default(),
            applied_corporate_codes: Default::default(),
            applied_passenger_types: Default::default(),
            applied_promotion_codes: Default::default(),
            applied_reductions: Default::default(),
            indicated_consumption: Default::default(),
            accounting_ref: Default::default(),
            granted_reduction_amounts: Default::default(),
        }
        
    }
}