-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.ts
More file actions
2748 lines (2625 loc) · 93.9 KB
/
Copy pathapi.ts
File metadata and controls
2748 lines (2625 loc) · 93.9 KB
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* tslint:disable */
/* eslint-disable */
/**
* API Reference
* The Kloutit API is organized around [REST](https://en.wikipedia.org/wiki/REST), it accepts and returns [JSON-encoded](https://www.json.org) bodies, returning standard [HTTP response codes](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes). You can interact with the API directly using your preferred HTTP/REST library.
*
* The version of the OpenAPI document: 2.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { Configuration } from './configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
import type { RequestArgs } from './base';
// @ts-ignore
import { BASE_PATH, BaseAPI, operationServerMap } from './base';
/**
*
* @export
* @interface Amount
*/
export interface Amount {
/**
*
* @type {number}
* @memberof Amount
*/
'value': number;
/**
*
* @type {Currencies}
* @memberof Amount
*/
'currency': Currencies;
}
/**
*
* @export
* @interface Case
*/
export interface Case {
/**
*
* @type {string}
* @memberof Case
*/
'id'?: string;
/**
*
* @type {boolean}
* @memberof Case
*/
'active'?: boolean;
/**
*
* @type {string}
* @memberof Case
*/
'createdAt'?: string;
/**
*
* @type {string}
* @memberof Case
*/
'updatedAt'?: string;
/**
*
* @type {boolean}
* @memberof Case
*/
'isDeleted'?: boolean;
/**
*
* @type {string}
* @memberof Case
*/
'deletedAt'?: string;
/**
*
* @type {CaseStatus}
* @memberof Case
*/
'status': CaseStatus;
/**
* The sales channel code related to the case.
* @type {string}
* @memberof Case
*/
'salesChannelCode'?: string;
/**
* Filial identifier related to the case.
* @type {string}
* @memberof Case
*/
'filialIdentifier'?: string;
/**
*
* @type {string}
* @memberof Case
*/
'paymentProcessor'?: CasePaymentProcessorEnum;
/**
* Date when the customer made the purchase in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'purchaseDate': string;
/**
* Service that the customer bought.
* @type {string}
* @memberof Case
*/
'service'?: string;
/**
* Product that the customer bought.
* @type {string}
* @memberof Case
*/
'product'?: string;
/**
* Flag that indicates if the charge made is refundable regarding your company terms and conditions.
* @type {boolean}
* @memberof Case
*/
'isChargeRefundable': boolean;
/**
* Customer name.
* @type {string}
* @memberof Case
*/
'customerName'?: string;
/**
* Customer email
* @type {string}
* @memberof Case
*/
'customerEmail'?: string;
/**
* Customer phone.
* @type {string}
* @memberof Case
*/
'customerPhone'?: string;
/**
* Date when the service was provided or will be provided in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'serviceDate'?: string;
/**
* Flag that indicates if the service was provided or not.
* @type {boolean}
* @memberof Case
*/
'serviceWasProvided'?: boolean;
/**
*
* @type {ServiceDuration}
* @memberof Case
*/
'serviceDurationType'?: ServiceDuration;
/**
* Check in date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'checkinDate'?: string;
/**
* Check out date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'checkoutDate'?: string;
/**
* Hotel name.
* @type {string}
* @memberof Case
*/
'hotelName'?: string;
/**
* Rate applied.
* @type {string}
* @memberof Case
*/
'rate'?: string;
/**
* Rate applied in return trip.
* @type {string}
* @memberof Case
*/
'inboundRate'?: string;
/**
* Flag that indicates if the client made the checkin or not.
* @type {boolean}
* @memberof Case
*/
'checkinConfirmation'?: boolean;
/**
* Departure country.
* @type {string}
* @memberof Case
*/
'departureCountry'?: string;
/**
* Destination country.
* @type {string}
* @memberof Case
*/
'destinationCountry'?: string;
/**
* Departure date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'departureDate'?: string;
/**
* Arrival date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'arrivalDate'?: string;
/**
* Departure country of return trip.
* @type {string}
* @memberof Case
*/
'inboundDepartureCountry'?: string;
/**
* Destination country of return trip.
* @type {string}
* @memberof Case
*/
'inboundDestinationCountry'?: string;
/**
* Departure date of return trip in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'inboundDepartureDate'?: string;
/**
* Arrival date of return trip in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'inboundArrivalDate'?: string;
/**
* Departure airport.
* @type {string}
* @memberof Case
*/
'departureAirport'?: string;
/**
* Arrival airport.
* @type {string}
* @memberof Case
*/
'arrivalAirport'?: string;
/**
* Departure airport of return trip.
* @type {string}
* @memberof Case
*/
'inboundDepartureAirport'?: string;
/**
* Arrival airport of return trip.
* @type {string}
* @memberof Case
*/
'inboundArrivalAirport'?: string;
/**
* Departure city.
* @type {string}
* @memberof Case
*/
'departureCity'?: string;
/**
* Arrival city.
* @type {string}
* @memberof Case
*/
'arrivalCity'?: string;
/**
* Departure city of return trip.
* @type {string}
* @memberof Case
*/
'inboundDepartureCity'?: string;
/**
* Arrival city of return trip.
* @type {string}
* @memberof Case
*/
'inboundArrivalCity'?: string;
/**
* Shipping city.
* @type {string}
* @memberof Case
*/
'shippingCity'?: string;
/**
* Shipping province.
* @type {string}
* @memberof Case
*/
'shippingProvince'?: string;
/**
* Shipping postal code.
* @type {string}
* @memberof Case
*/
'shippingPostalCode'?: string;
/**
* Shipping date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'shippingDate'?: string;
/**
* Delivery date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'deliveryDate'?: string;
/**
* Delivery company.
* @type {string}
* @memberof Case
*/
'deliveryCompany'?: string;
/**
* Flag that indicates if the customer received the product.
* @type {boolean}
* @memberof Case
*/
'deliveryConfirmation'?: boolean;
/**
* Start date in UTC and ISO 8601 format of the commitment that the customer has with the company.
* @type {string}
* @memberof Case
*/
'commitmentStartDate'?: string;
/**
* End date in UTC and ISO 8601 format of the commitment that the customer has with the company.
* @type {string}
* @memberof Case
*/
'commitmentEndDate'?: string;
/**
* Flag that indicates if the subscription is cancelled or active.
* @type {boolean}
* @memberof Case
*/
'isCancelled'?: boolean;
/**
* Product description.
* @type {string}
* @memberof Case
*/
'productDescription'?: string;
/**
* For RENTING_VEHICLE typology. Origin location for vehicle rental.
* @type {string}
* @memberof Case
*/
'rentalOriginLocation'?: string;
/**
* For RENTING_VEHICLE typology. Destination location for vehicle rental.
* @type {string}
* @memberof Case
*/
'rentalDestinationLocation'?: string;
/**
* For RENTING_VEHICLE typology. Rental pickup date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'rentalPickupDate'?: string;
/**
* For RENTING_VEHICLE typology. Rental delivery date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'rentalDeliveryDate'?: string;
/**
* For RENTING_VEHICLE typology. Flag that indicates if the customer is the rental owner.
* @type {boolean}
* @memberof Case
*/
'privateOwnerRental'?: boolean;
/**
* For RENTING_VEHICLE typology. Name of the rental owner/company.
* @type {string}
* @memberof Case
*/
'rentalOwnerName'?: string;
/**
* For RENTING_VEHICLE typology. Currency for rental amounts.
* @type {string}
* @memberof Case
*/
'rentalCurrency'?: string;
/**
* For RENTING_VEHICLE typology. Base rental amount.
* @type {Amount}
* @memberof Case
*/
'rentalAmount'?: Amount;
/**
* For RENTING_VEHICLE typology. Extra distance charge amount.
* @type {Amount}
* @memberof Case
*/
'extraDistanceAmount'?: Amount;
/**
* For RENTING_VEHICLE typology. Penalty amount for rental violations.
* @type {Amount}
* @memberof Case
*/
'penaltyAmount'?: Amount;
/**
* For RENTING_VEHICLE typology. Security deposit amount.
* @type {Amount}
* @memberof Case
*/
'depositAmount'?: Amount;
/**
* For RENTING_VEHICLE typology. Damages amount charged to customer.
* @type {Amount}
* @memberof Case
*/
'damagesAmount'?: Amount;
/**
* For RENTING_VEHICLE typology. Model of the rented vehicle.
* @type {string}
* @memberof Case
*/
'productBrand'?: string;
/**
* Product identifier. If RENTING_VEHICLE typology, this is the vehicle plate number.
* @type {string}
* @memberof Case
*/
'productId'?: string;
/**
* Tracking number related to the shipment of the product.
* @type {string}
* @memberof Case
*/
'trackingNumber'?: string;
/**
* Chargeback expedient number.
* @type {string}
* @memberof Case
*/
'expedientNumber': string;
/**
* Chargeback notification date, when the merchant receives the chargeback notification, in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'notificationDate': string;
/**
*
* @type {CreateCaseParamsDisputeAmount}
* @memberof Case
*/
'disputeAmount': CreateCaseParamsDisputeAmount;
/**
*
* @type {ChargebackReason}
* @memberof Case
*/
'chargebackReason': ChargebackReason;
/**
* Deadline date to resolve this chargeback in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'deadline'?: string;
/**
* Order number related to the case.
* @type {string}
* @memberof Case
*/
'orderNumber'?: string;
/**
* Date when the customer contacted to the merchant in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'contactDate'?: string;
/**
* Array of all the emails that the customer has sent regarding this dispute. The structure of each item contains: **sender**: *customer* or *company*, **date**, **content**: string containing the message
* @type {Array<CommunicationItem>}
* @memberof Case
*/
'communications'?: Array<CommunicationItem>;
/**
* Additional info related to the chargeback.
* @type {string}
* @memberof Case
*/
'additionalInfo'?: string;
/**
* Last 4 digits of the customer\'s credit card number.
* @type {string}
* @memberof Case
*/
'last4Digits'?: string;
/**
* Transaction id.
* @type {string}
* @memberof Case
*/
'transactionId'?: string;
/**
* Transaction date in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'transactionDate': string;
/**
* Purchase amount.
* @type {Amount}
* @memberof Case
*/
'purchaseAmount': Amount;
/**
* Customer bank name.
* @type {string}
* @memberof Case
*/
'bankName'?: string;
/**
* Card brand that the customer used to make the payment.
* @type {string}
* @memberof Case
*/
'cardBrand'?: string;
/**
* Flag that indicates if the purchase has been made with 3DS.
* @type {boolean}
* @memberof Case
*/
'is3DSPurchase'?: boolean;
/**
* Organization sector of the case.
* @type {string}
* @memberof Case
*/
'sector'?: CaseSectorEnum;
/**
* Date when the customer contacted to the seller in UTC and ISO 8601 format.
* @type {string}
* @memberof Case
*/
'sellerContactDate'?: string;
/**
* Seller additional infromation.
* @type {string}
* @memberof Case
*/
'sellerAdditionalInfo'?: string;
/**
* Seller name.
* @type {string}
* @memberof Case
*/
'sellerName'?: string;
/**
* Seller phone number.
* @type {string}
* @memberof Case
*/
'sellerPhone'?: string;
/**
* Seller email.
* @type {string}
* @memberof Case
*/
'sellerEmail'?: string;
}
export const CasePaymentProcessorEnum = {
STRIPE: 'STRIPE',
CHECKOUT_COM: 'CHECKOUT_COM',
WORLDLINE: 'WORLDLINE',
REDSYS: 'REDSYS',
PAYPAL: 'PAYPAL',
MANGOPAY: 'MANGOPAY',
ADYEN: 'ADYEN',
SHOPIFY: 'SHOPIFY',
KLARNA: 'KLARNA',
DLOCAL: 'DLOCAL'
} as const;
export type CasePaymentProcessorEnum = typeof CasePaymentProcessorEnum[keyof typeof CasePaymentProcessorEnum];
export const CaseSectorEnum = {
DIGITAL_PRODUCT: 'DIGITAL_PRODUCT',
EDUCATION: 'EDUCATION',
FASHION: 'FASHION',
FOOD: 'FOOD',
GAMING: 'GAMING',
HEALTH_BEAUTY: 'HEALTH_BEAUTY',
HOME: 'HOME',
LEISURE: 'LEISURE',
MARKETPLACE: 'MARKETPLACE',
PARKING: 'PARKING',
PHONE: 'PHONE',
SOFTWARE: 'SOFTWARE',
SPORT: 'SPORT',
SUBSCRIPTION: 'SUBSCRIPTION',
SUPPLY: 'SUPPLY',
TECHNOLOGY: 'TECHNOLOGY',
TRANSPORT: 'TRANSPORT',
TRAVEL_AIRLINE: 'TRAVEL_AIRLINE',
TRAVEL_HOTEL: 'TRAVEL_HOTEL',
RENTING_VEHICLE: 'RENTING_VEHICLE'
} as const;
export type CaseSectorEnum = typeof CaseSectorEnum[keyof typeof CaseSectorEnum];
/**
* Sector of the case. It must be one of the sectors of the organization, for instance: EDUCATION, SOFTWARE, TRAVEL_HOTEL,...
* @export
* @enum {string}
*/
export const CaseSector = {
DIGITAL_PRODUCT: 'DIGITAL_PRODUCT',
EDUCATION: 'EDUCATION',
FASHION: 'FASHION',
FOOD: 'FOOD',
GAMING: 'GAMING',
HEALTH_BEAUTY: 'HEALTH_BEAUTY',
HOME: 'HOME',
LEISURE: 'LEISURE',
MARKETPLACE: 'MARKETPLACE',
PARKING: 'PARKING',
PHONE: 'PHONE',
SOFTWARE: 'SOFTWARE',
SPORT: 'SPORT',
SUBSCRIPTION: 'SUBSCRIPTION',
SUPPLY: 'SUPPLY',
TECHNOLOGY: 'TECHNOLOGY',
TRANSPORT: 'TRANSPORT',
TRAVEL_AIRLINE: 'TRAVEL_AIRLINE',
TRAVEL_HOTEL: 'TRAVEL_HOTEL',
RENTING_VEHICLE: 'RENTING_VEHICLE'
} as const;
export type CaseSector = typeof CaseSector[keyof typeof CaseSector];
/**
* Current status of the case.
* @export
* @enum {string}
*/
export const CaseStatus = {
PENDING: 'PENDING',
GENERATING: 'GENERATING',
GENERATED: 'GENERATED',
ALLEGING: 'ALLEGING',
ALLEGED: 'ALLEGED',
WON: 'WON',
LOST: 'LOST',
ACCEPTED: 'ACCEPTED',
EXPIRED: 'EXPIRED'
} as const;
export type CaseStatus = typeof CaseStatus[keyof typeof CaseStatus];
/**
* Reason why the customer is requesting the chargeback.
* @export
* @enum {string}
*/
export const ChargebackReason = {
FRAUD: 'FRAUD',
PRODUCT_SERVICE_NOT_RECEIVED: 'PRODUCT_SERVICE_NOT_RECEIVED',
DEFECTIVE_PRODUCT_SERVICE: 'DEFECTIVE_PRODUCT_SERVICE',
PRODUCT_SERVICE_NOT_AS_DESCRIBED: 'PRODUCT_SERVICE_NOT_AS_DESCRIBED',
INCORRECT_DUPLICATED_CHARGES: 'INCORRECT_DUPLICATED_CHARGES',
PRODUCT_SERVICE_CANCELLED: 'PRODUCT_SERVICE_CANCELLED',
REFUND_NOT_RECEIVED: 'REFUND_NOT_RECEIVED',
RECURRENT_OPERATION_CANCELLED: 'RECURRENT_OPERATION_CANCELLED'
} as const;
export type ChargebackReason = typeof ChargebackReason[keyof typeof ChargebackReason];
/**
*
* @export
* @interface ClientWebhookEventDto
*/
export interface ClientWebhookEventDto {
/**
* The type of the webhook event
* @type {string}
* @memberof ClientWebhookEventDto
*/
'eventType': string;
/**
* The expedient number of the case that the webhook event is related to
* @type {string}
* @memberof ClientWebhookEventDto
*/
'expedientNumber': string;
/**
* The details of the case that the webhook event is related to
* @type {object}
* @memberof ClientWebhookEventDto
*/
'details': object;
}
/**
*
* @export
* @interface CommunicationItem
*/
export interface CommunicationItem {
/**
*
* @type {string}
* @memberof CommunicationItem
*/
'sender': string;
/**
*
* @type {string}
* @memberof CommunicationItem
*/
'content': string;
/**
*
* @type {string}
* @memberof CommunicationItem
*/
'date': string;
}
/**
*
* @export
* @interface CreateCaseParams
*/
export interface CreateCaseParams {
/**
* Sales channel code related to the case. This should be the sales channel code that is configured for your organization in Kloutit. If you do not have sales channels in your organization, leave this field empty.
* @type {string}
* @memberof CreateCaseParams
*/
'salesChannelCode'?: string;
/**
* Filial identifier related to the case. This should be the NIF, VAT or other unique identifier that is configured for your organization in Kloutit. If you do not have filials in your organization, leave this field empty.
* @type {string}
* @memberof CreateCaseParams
*/
'filialIdentifier'?: string;
/**
* Date when the customer made the purchase in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'purchaseDate'?: string;
/**
* Service that the customer bought.
* @type {string}
* @memberof CreateCaseParams
*/
'service'?: string;
/**
* Product that the customer bought.
* @type {string}
* @memberof CreateCaseParams
*/
'product'?: string;
/**
* Flag that indicates if the charge made is refundable regarding your company terms and conditions.
* @type {boolean}
* @memberof CreateCaseParams
*/
'isChargeRefundable'?: boolean;
/**
* Customer name.
* @type {string}
* @memberof CreateCaseParams
*/
'customerName'?: string;
/**
* Customer email
* @type {string}
* @memberof CreateCaseParams
*/
'customerEmail'?: string;
/**
* Customer phone.
* @type {string}
* @memberof CreateCaseParams
*/
'customerPhone'?: string;
/**
* Date when the service was provided or will be provided in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'serviceDate'?: string;
/**
* Flag that indicates if the service was provided or not.
* @type {boolean}
* @memberof CreateCaseParams
*/
'serviceWasProvided'?: boolean;
/**
*
* @type {ServiceDuration}
* @memberof CreateCaseParams
*/
'serviceDurationType'?: ServiceDuration;
/**
* Check in date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'checkinDate'?: string;
/**
* Check out date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'checkoutDate'?: string;
/**
* Hotel name.
* @type {string}
* @memberof CreateCaseParams
*/
'hotelName'?: string;
/**
* Rate applied.
* @type {string}
* @memberof CreateCaseParams
*/
'rate'?: string;
/**
* Rate applied in return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundRate'?: string;
/**
* Flag that indicates if the client made the checkin or not.
* @type {boolean}
* @memberof CreateCaseParams
*/
'checkinConfirmation'?: boolean;
/**
* Departure country.
* @type {string}
* @memberof CreateCaseParams
*/
'departureCountry'?: string;
/**
* Destination country.
* @type {string}
* @memberof CreateCaseParams
*/
'destinationCountry'?: string;
/**
* Departure date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'departureDate'?: string;
/**
* Arrival date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'arrivalDate'?: string;
/**
* Departure country of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundDepartureCountry'?: string;
/**
* Destination country of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundDestinationCountry'?: string;
/**
* Departure date of return trip in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundDepartureDate'?: string;
/**
* Arrival date of return trip in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundArrivalDate'?: string;
/**
* Departure airport.
* @type {string}
* @memberof CreateCaseParams
*/
'departureAirport'?: string;
/**
* Arrival airport.
* @type {string}
* @memberof CreateCaseParams
*/
'arrivalAirport'?: string;
/**
* Departure airport of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundDepartureAirport'?: string;
/**
* Arrival airport of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundArrivalAirport'?: string;
/**
* Departure city.
* @type {string}
* @memberof CreateCaseParams
*/
'departureCity'?: string;
/**
* Arrival city.
* @type {string}
* @memberof CreateCaseParams
*/
'arrivalCity'?: string;
/**
* Departure city of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundDepartureCity'?: string;
/**
* Arrival city of return trip.
* @type {string}
* @memberof CreateCaseParams
*/
'inboundArrivalCity'?: string;
/**
* Shipping city.
* @type {string}
* @memberof CreateCaseParams
*/
'shippingCity'?: string;
/**
* Shipping province.
* @type {string}
* @memberof CreateCaseParams
*/
'shippingProvince'?: string;
/**
* Shipping postal code.
* @type {string}
* @memberof CreateCaseParams
*/
'shippingPostalCode'?: string;
/**
* Shipping date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'shippingDate'?: string;
/**
* Delivery date in UTC and ISO 8601 format.
* @type {string}
* @memberof CreateCaseParams
*/
'deliveryDate'?: string;
/**
* Delivery company.
* @type {string}
* @memberof CreateCaseParams