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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
use serde::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct KlarnaPaymentSessionApiSchema {
pub klarna_authorization_token: String,
pub session_data: KlarnaSessionDetailsApiSchema,
}
impl std::fmt::Display for KlarnaPaymentSessionApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum PaymentStatus {
#[serde(rename = "PENDING")]
Pending,
#[serde(rename = "FAILED")]
Failed,
#[serde(rename = "AUTHORIZED")]
Authorized,
#[serde(rename = "SETTLING")]
Settling,
#[serde(rename = "PARTIALLY_SETTLED")]
PartiallySettled,
#[serde(rename = "SETTLED")]
Settled,
#[serde(rename = "DECLINED")]
Declined,
#[serde(rename = "CANCELLED")]
Cancelled,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct AddressApiSchema {
pub postal_code: Option<String>,
pub address_line2: Option<String>,
pub state: Option<String>,
pub first_name: Option<String>,
pub city: String,
pub address_line1: String,
pub country_code: CountryCodeEnum,
pub last_name: Option<String>,
}
impl std::fmt::Display for AddressApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentCaptureApiRequest {
pub final_: Option<bool>,
pub amount: Option<serde_json::Value>,
}
impl std::fmt::Display for PaymentCaptureApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CheckoutCustomerDetailsApiSchema {
pub email_address: Option<String>,
pub mobile_number: Option<String>,
pub tax_id: Option<String>,
pub first_name: Option<String>,
pub billing_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub shipping_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub national_document_id: Option<String>,
pub last_name: Option<String>,
}
impl std::fmt::Display for CheckoutCustomerDetailsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum ThreeDSecureFailedReasonCodeEnum {
#[serde(rename = "UNKNOWN")]
Unknown,
#[serde(rename = "REJECTED_BY_ISSUER")]
RejectedByIssuer,
#[serde(rename = "CARD_AUTHENTICATION_FAILED")]
CardAuthenticationFailed,
#[serde(rename = "UNKNOWN_DEVICE")]
UnknownDevice,
#[serde(rename = "UNSUPPORTED_DEVICE")]
UnsupportedDevice,
#[serde(rename = "EXCEEDS_AUTHENTICATION_FREQUENCY_LIMIT")]
ExceedsAuthenticationFrequencyLimit,
#[serde(rename = "EXPIRED_CARD")]
ExpiredCard,
#[serde(rename = "INVALID_CARD_NUMBER")]
InvalidCardNumber,
#[serde(rename = "INVALID_TRANSACTION")]
InvalidTransaction,
#[serde(rename = "NO_CARD_RECORD")]
NoCardRecord,
#[serde(rename = "SECURITY_FAILURE")]
SecurityFailure,
#[serde(rename = "STOLEN_CARD")]
StolenCard,
#[serde(rename = "SUSPECTED_FRAUD")]
SuspectedFraud,
#[serde(rename = "TRANSACTION_NOT_PERMITTED_TO_CARDHOLDER")]
TransactionNotPermittedToCardholder,
#[serde(rename = "CARDHOLDER_NOT_ENROLLED_IN_SERVICE")]
CardholderNotEnrolledInService,
#[serde(rename = "TRANSACTION_TIMED_OUT_AT_THE_ACS")]
TransactionTimedOutAtTheAcs,
#[serde(rename = "LOW_CONFIDENCE")]
LowConfidence,
#[serde(rename = "MEDIUM_CONFIDENCE")]
MediumConfidence,
#[serde(rename = "HIGH_CONFIDENCE")]
HighConfidence,
#[serde(rename = "VERY_HIGH_CONFIDENCE")]
VeryHighConfidence,
#[serde(rename = "EXCEEDS_ACS_MAXIMUM_CHALLENGES")]
ExceedsAcsMaximumChallenges,
#[serde(rename = "NON_PAYMENT_NOT_SUPPORTED")]
NonPaymentNotSupported,
#[serde(rename = "THREE_RI_NOT_SUPPORTED")]
ThreeRiNotSupported,
#[serde(rename = "ACS_TECHNICAL_ISSUE")]
AcsTechnicalIssue,
#[serde(rename = "DECOUPLED_REQUIRED_BY_ACS")]
DecoupledRequiredByAcs,
#[serde(rename = "DECOUPLED_MAX_EXPIRY_EXCEEDED")]
DecoupledMaxExpiryExceeded,
#[serde(rename = "DECOUPLED_AUTHENTICATION_INSUFFICIENT_TIME")]
DecoupledAuthenticationInsufficientTime,
#[serde(rename = "AUTHENTICATION_ATTEMPTED_BUT_NOT_PERFORMED_BY_CARDHOLDER")]
AuthenticationAttemptedButNotPerformedByCardholder,
#[serde(rename = "ACS_TIMED_OUT")]
AcsTimedOut,
#[serde(rename = "INVALID_ACS_RESPONSE")]
InvalidAcsResponse,
#[serde(rename = "ACS_SYSTEM_ERROR_RESPONSE")]
AcsSystemErrorResponse,
#[serde(rename = "ERROR_GENERATING_CAVV")]
ErrorGeneratingCavv,
#[serde(rename = "PROTOCOL_VERSION_NOT_SUPPORTED")]
ProtocolVersionNotSupported,
#[serde(rename = "TRANSACTION_EXCLUDED_FROM_ATTEMPTS_PROCESSING")]
TransactionExcludedFromAttemptsProcessing,
#[serde(rename = "REQUESTED_PROGRAM_NOT_SUPPORTED")]
RequestedProgramNotSupported,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct KlarnaAddressApiSchema {
pub city: Option<String>,
pub country_code: Option<CountryCodeEnum>,
pub title: Option<String>,
pub phone_number: Option<String>,
pub state: Option<String>,
pub first_name: Option<String>,
pub email: Option<String>,
pub last_name: Option<String>,
pub address_line2: Option<String>,
pub postal_code: Option<String>,
pub address_line1: Option<String>,
pub address_line3: Option<String>,
}
impl std::fmt::Display for KlarnaAddressApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum TransactionDeclineReasonV2Enum {
#[serde(rename = "ERROR")]
Error,
#[serde(rename = "INVALID_CARD_NUMBER")]
InvalidCardNumber,
#[serde(rename = "EXPIRED_CARD")]
ExpiredCard,
#[serde(rename = "LOST_OR_STOLEN_CARD")]
LostOrStolenCard,
#[serde(rename = "SUSPECTED_FRAUD")]
SuspectedFraud,
#[serde(rename = "UNKNOWN")]
Unknown,
#[serde(rename = "DECLINED")]
Declined,
#[serde(rename = "REFER_TO_CARD_ISSUER")]
ReferToCardIssuer,
#[serde(rename = "DO_NOT_HONOR")]
DoNotHonor,
#[serde(rename = "INSUFFICIENT_FUNDS")]
InsufficientFunds,
#[serde(rename = "WITHDRAWAL_LIMIT_EXCEEDED")]
WithdrawalLimitExceeded,
#[serde(rename = "ISSUER_TEMPORARILY_UNAVAILABLE")]
IssuerTemporarilyUnavailable,
#[serde(rename = "AUTHENTICATION_REQUIRED")]
AuthenticationRequired,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentCardTokenApiSchemaPaymentMethodsApi {
pub account_funding_type: Option<String>,
pub cardholder_name: Option<String>,
pub network_transaction_id: Option<String>,
pub last4_digits: String,
pub expiration_month: String,
pub expiration_year: String,
pub network: Option<String>,
}
impl std::fmt::Display for PaymentCardTokenApiSchemaPaymentMethodsApi {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct OrderLineItemsApiSchema {
pub amount: serde_json::Value,
pub item_id: Option<String>,
pub name: Option<String>,
pub product_data: Option<OrderLineItemsProductDataApiSchema>,
pub discount_amount: Option<serde_json::Value>,
pub quantity: Option<i64>,
pub tax_code: Option<String>,
pub tax_amount: Option<i64>,
pub description: Option<String>,
pub product_type: Option<String>,
}
impl std::fmt::Display for OrderLineItemsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum AccountFundingTypeEnum {
#[serde(rename = "CREDIT")]
Credit,
#[serde(rename = "DEBIT")]
Debit,
#[serde(rename = "PREPAID")]
Prepaid,
#[serde(rename = "CHARGE")]
Charge,
#[serde(rename = "DEFERRED_DEBIT")]
DeferredDebit,
#[serde(rename = "UNKNOWN")]
Unknown,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CustomerDetailsApiSchema {
pub email_address: Option<String>,
pub last_name: Option<String>,
pub billing_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub mobile_number: Option<String>,
pub first_name: Option<String>,
pub national_document_id: Option<String>,
pub shipping_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub tax_id: Option<String>,
}
impl std::fmt::Display for CustomerDetailsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Currency(pub serde_json::Value);
#[derive(Debug, Serialize, Deserialize)]
pub struct Error400Response {
pub error_object: ErrorObject,
}
impl std::fmt::Display for Error400Response {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct GoCardlessMandateApiSchema {
pub gocardless_mandate_id: String,
}
impl std::fmt::Display for GoCardlessMandateApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentSummaryApiSchema {
pub order_id: String,
pub amount: i64,
pub metadata: Option<serde_json::Value>,
pub processor: Option<String>,
pub status: String,
pub id: String,
pub date: String,
pub currency_code: String,
}
impl std::fmt::Display for PaymentSummaryApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum TokenTypeEnum {
#[serde(rename = "MULTI_USE")]
MultiUse,
#[serde(rename = "SINGLE_USE")]
SingleUse,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentRefundApiRequest {
pub reason: Option<String>,
pub amount: Option<serde_json::Value>,
pub order_id: Option<String>,
}
impl std::fmt::Display for PaymentRefundApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TransactionOverviewApiSchema {
pub processor_status: Option<String>,
pub transaction_type: Option<String>,
pub processor_merchant_id: String,
pub amount: serde_json::Value,
pub date: String,
pub processor_transaction_id: Option<String>,
pub processor_status_reason: Option<StatusReasonApiSchema>,
pub processor_name: Option<String>,
pub currency_code: String,
}
impl std::fmt::Display for TransactionOverviewApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct OrderLineItemsProductDataApiSchema {
pub manufacturer_part_number: Option<String>,
pub weight: Option<f64>,
pub brand: Option<String>,
pub color: Option<String>,
pub global_trade_item_number: Option<String>,
pub weight_unit: Option<String>,
pub sku: Option<String>,
}
impl std::fmt::Display for OrderLineItemsProductDataApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct OrderFeesApiSchema {
pub amount: serde_json::Value,
pub type_: Option<String>,
pub description: Option<String>,
}
impl std::fmt::Display for OrderFeesApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CheckoutPaymentMethodOptionsApiSchema {
pub descriptor: Option<String>,
pub payment_type: Option<String>,
pub options: Option<serde_json::Value>,
pub vault_on_success: Option<bool>,
}
impl std::fmt::Display for CheckoutPaymentMethodOptionsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ThreeDSecureAuthenticationApiSchema {
pub challenge_issued: Option<bool>,
pub response_code: String,
pub reason_code: Option<serde_json::Value>,
pub protocol_version: Option<String>,
pub reason_text: Option<String>,
}
impl std::fmt::Display for ThreeDSecureAuthenticationApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum PaymentStatusTypeEnum {
#[serde(rename = "APPLICATION_ERROR")]
ApplicationError,
#[serde(rename = "GATEWAY_REJECTED")]
GatewayRejected,
#[serde(rename = "ISSUER_DECLINED")]
IssuerDeclined,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct VaultPaymentMethodApiRequest {
pub customer_id: String,
pub verify: Option<bool>,
}
impl std::fmt::Display for VaultPaymentMethodApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RefundPaymentPaymentsIdRefundPostRequired {
pub amount: serde_json::Value,
pub reason: String,
pub id: String,
pub order_id: String,
}
impl std::fmt::Display for RefundPaymentPaymentsIdRefundPostRequired {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClientSessionUpdateApiRequest {
pub order: Option<OrderDetailsApiSchema>,
pub customer_id: Option<String>,
pub amount: Option<serde_json::Value>,
pub metadata: Option<serde_json::Value>,
pub customer: Option<CheckoutCustomerDetailsApiSchema>,
pub currency_code: Option<String>,
pub client_token: Option<String>,
pub payment_method: Option<CheckoutPaymentMethodOptionsApiSchema>,
pub order_id: Option<String>,
}
impl std::fmt::Display for ClientSessionUpdateApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentResponsePaymentMethodOptionsApiSchema {
pub payment_method_token: Option<String>,
pub is_vaulted: Option<bool>,
pub analytics_id: Option<String>,
pub payment_method_type: Option<String>,
pub payment_method_data: Option<serde_json::Value>,
pub three_d_secure_authentication: Option<ThreeDSecureAuthenticationApiSchema>,
pub descriptor: Option<String>,
}
impl std::fmt::Display for PaymentResponsePaymentMethodOptionsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct KlarnaCustomerTokenApiSchema {
pub klarna_customer_token: String,
pub session_data: KlarnaSessionDetailsApiSchema,
}
impl std::fmt::Display for KlarnaCustomerTokenApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CardNetworkEnum(pub String);
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ErrorObject {
pub validation_errors: Option<Vec<serde_json::Value>>,
pub diagnostics_id: Option<String>,
pub description: Option<String>,
pub error_id: Option<String>,
}
impl std::fmt::Display for ErrorObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum TransactionTypeEnum {
#[serde(rename = "SALE")]
Sale,
#[serde(rename = "REFUND")]
Refund,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct UpdateClientSideTokenClientSessionPatchRequired {
pub client_token: String,
pub payment_method: CheckoutPaymentMethodOptionsApiSchema,
pub currency_code: String,
pub metadata: serde_json::Value,
pub amount: serde_json::Value,
pub order_id: String,
pub customer_id: String,
pub order: OrderDetailsApiSchema,
pub customer: CheckoutCustomerDetailsApiSchema,
}
impl std::fmt::Display for UpdateClientSideTokenClientSessionPatchRequired {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct KlarnaTokenDetails {
pub masked_number: Option<String>,
pub brand: Option<String>,
pub expiry_date: Option<String>,
pub type_: String,
}
impl std::fmt::Display for KlarnaTokenDetails {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct MerchantPaymentMethodTokenListApiResponse {
pub data: Option<Vec<MerchantPaymentMethodTokenApiResponse>>,
}
impl std::fmt::Display for MerchantPaymentMethodTokenListApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentSummaryProcessorApiSchema {
pub name: String,
pub processor_merchant_id: Option<String>,
}
impl std::fmt::Display for PaymentSummaryProcessorApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct KlarnaSessionDetailsApiSchema {
pub purchase_country: String,
pub recurring_description: Option<String>,
pub token_details: Option<KlarnaTokenDetails>,
pub purchase_currency: String,
pub locale: String,
pub billing_address: KlarnaAddressApiSchema,
pub shipping_address: Option<KlarnaAddressApiSchema>,
pub order_lines: Vec<serde_json::Value>,
}
impl std::fmt::Display for KlarnaSessionDetailsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentCancelApiRequest {
pub reason: Option<String>,
}
impl std::fmt::Display for PaymentCancelApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct VerifiedMerchantPaymentMethodTokenApiResponse {
pub merchant_payment_method_token_api_response: MerchantPaymentMethodTokenApiResponse,
pub is_verified: bool,
}
impl std::fmt::Display for VerifiedMerchantPaymentMethodTokenApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct StatusReasonApiSchema {
pub decline_type: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
pub type_: String,
}
impl std::fmt::Display for StatusReasonApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PayPalOrderTokenApiSchema {
pub external_payer_info: Option<PayPalExternalPayerInfoApiSchema>,
pub paypal_status: Option<String>,
pub paypal_order_id: String,
}
impl std::fmt::Display for PayPalOrderTokenApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClientSessionWithTokenApiResponse {
pub customer: Option<CustomerDetailsApiSchema>,
pub warnings: Option<ClientSessionWarningsApiResponse>,
pub client_token_expiration_date: Option<String>,
pub metadata: Option<serde_json::Value>,
pub amount: Option<serde_json::Value>,
pub order: Option<OrderDetailsApiSchema>,
pub currency_code: Option<String>,
pub payment_method: Option<CheckoutPaymentMethodOptionsApiSchema>,
pub client_token: Option<String>,
pub order_id: Option<String>,
pub customer_id: Option<String>,
}
impl std::fmt::Display for ClientSessionWithTokenApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CheckoutPaymentMethodOptionCardNetworkApiSchema {
pub card_network_type: Option<serde_json::Value>,
}
impl std::fmt::Display for CheckoutPaymentMethodOptionCardNetworkApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum CardRegionRestrictionEnum {
#[serde(rename = "DOMESTIC_USE_ONLY")]
DomesticUseOnly,
#[serde(rename = "NONE")]
None,
#[serde(rename = "UNKNOWN")]
Unknown,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BinDataApiSchema {
pub network: String,
pub product_code: String,
pub issuer_name: Option<String>,
pub issuer_country_code: Option<CountryCodeEnum>,
pub prepaid_reloadable_indicator: String,
pub product_name: String,
pub issuer_currency_code: Option<Currency>,
pub product_usage_type: String,
pub account_funding_type: String,
pub regional_restriction: String,
pub account_number_type: String,
}
impl std::fmt::Display for BinDataApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentRequestPaymentMethodOptionsApiSchema {
pub descriptor: Option<String>,
pub payment_type: Option<String>,
pub vault_on_success: Option<bool>,
}
impl std::fmt::Display for PaymentRequestPaymentMethodOptionsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct OrderShippingApiSchema {
pub amount: Option<serde_json::Value>,
}
impl std::fmt::Display for OrderShippingApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentCardTokenApiSchema {
pub bin_data: Option<BinDataApiSchema>,
pub last4_digits: String,
pub is_network_tokenized: Option<bool>,
pub first6_digits: Option<String>,
pub expiration_year: String,
pub cardholder_name: Option<String>,
pub network: Option<String>,
pub expiration_month: String,
}
impl std::fmt::Display for PaymentCardTokenApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentListApiResponse {
pub next_cursor: Option<String>,
pub data: Option<Vec<PaymentSummaryApiSchema>>,
pub prev_cursor: Option<String>,
}
impl std::fmt::Display for PaymentListApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentResumeApiRequest {
pub resume_token: String,
}
impl std::fmt::Display for PaymentResumeApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct CheckoutPaymentMethodOptionSurchargeApiSchema {
pub amount: Option<i64>,
}
impl std::fmt::Display for CheckoutPaymentMethodOptionSurchargeApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClientSessionApiRequest {
pub customer: Option<CheckoutCustomerDetailsApiSchema>,
pub currency_code: Option<String>,
pub payment_method: Option<CheckoutPaymentMethodOptionsApiSchema>,
pub amount: Option<serde_json::Value>,
pub metadata: Option<serde_json::Value>,
pub order_id: Option<String>,
pub order: Option<OrderDetailsApiSchema>,
pub customer_id: Option<String>,
}
impl std::fmt::Display for ClientSessionApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentMethodTypeEnum(pub String);
#[derive(Debug, Serialize, Deserialize)]
pub enum CardProductTypeEnum {
#[serde(rename = "CONSUMER")]
Consumer,
#[serde(rename = "BUSINESS")]
Business,
#[serde(rename = "GOVERNMENT")]
Government,
#[serde(rename = "UNKNOWN")]
Unknown,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Error422Response {
pub error_object: ErrorObject,
}
impl std::fmt::Display for Error422Response {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClientSessionApiResponse {
pub customer_id: Option<String>,
pub order: Option<OrderDetailsApiSchema>,
pub currency_code: Option<String>,
pub amount: Option<serde_json::Value>,
pub order_id: Option<String>,
pub metadata: Option<serde_json::Value>,
pub customer: Option<CustomerDetailsApiSchema>,
pub payment_method: Option<CheckoutPaymentMethodOptionsApiSchema>,
}
impl std::fmt::Display for ClientSessionApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentCreationApiRequest {
pub order_id: Option<String>,
pub order: Option<OrderDetailsApiSchema>,
pub payment_method_token: String,
pub metadata: Option<serde_json::Value>,
pub amount: Option<serde_json::Value>,
pub currency_code: Option<String>,
pub customer_id: Option<String>,
pub payment_method: Option<PaymentRequestPaymentMethodOptionsApiSchema>,
pub customer: Option<CustomerDetailsApiSchema>,
}
impl std::fmt::Display for PaymentCreationApiRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct IdealPayNlTokenApiSchema {
pub payment_method_config_id: String,
}
impl std::fmt::Display for IdealPayNlTokenApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum ProductTypeEnum {
#[serde(rename = "PHYSICAL")]
Physical,
#[serde(rename = "DIGITAL")]
Digital,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentResponseProcessorApiSchema {
pub processor_merchant_id: Option<String>,
pub amount_captured: Option<i64>,
pub name: Option<String>,
pub amount_refunded: Option<i64>,
}
impl std::fmt::Display for PaymentResponseProcessorApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum DeclineTypeEnum {
#[serde(rename = "SOFT_DECLINE")]
SoftDecline,
#[serde(rename = "HARD_DECLINE")]
HardDecline,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct VerifiedMerchantPaymentMethodTokenListApiResponse {
pub data: Option<Vec<VerifiedMerchantPaymentMethodTokenApiResponse>>,
}
impl std::fmt::Display for VerifiedMerchantPaymentMethodTokenListApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct BinDataOptionalApiSchema {
pub network: Option<String>,
}
impl std::fmt::Display for BinDataOptionalApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PayPalExternalPayerInfoApiSchema {
pub last_name: Option<String>,
pub external_payer_id: Option<String>,
pub first_name: Option<String>,
pub email: Option<String>,
}
impl std::fmt::Display for PayPalExternalPayerInfoApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct OrderDetailsApiSchema {
pub line_items: Option<Vec<OrderLineItemsApiSchema>>,
pub country_code: Option<CountryCodeEnum>,
pub fees: Option<Vec<OrderFeesApiSchema>>,
pub shipping: Option<OrderShippingApiSchema>,
}
impl std::fmt::Display for OrderDetailsApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum ThreeDSecureAuthResponseCodeEnum {
#[serde(rename = "NOT_PERFORMED")]
NotPerformed,
#[serde(rename = "SKIPPED")]
Skipped,
#[serde(rename = "AUTH_SUCCESS")]
AuthSuccess,
#[serde(rename = "AUTH_FAILED")]
AuthFailed,
#[serde(rename = "CHALLENGE")]
Challenge,
#[serde(rename = "METHOD")]
Method,
}
#[derive(Debug, Serialize, Deserialize)]
pub enum CardAccountNumberTypeEnum {
#[serde(rename = "PRIMARY_ACCOUNT_NUMBER")]
PrimaryAccountNumber,
#[serde(rename = "NETWORK_TOKEN")]
NetworkToken,
#[serde(rename = "UNKNOWN")]
Unknown,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ApayaCustomerTokenApiSchema {
pub mnc: Option<i64>,
pub mx: String,
pub mcc: Option<i64>,
}
impl std::fmt::Display for ApayaCustomerTokenApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum RecurringTransactionTypeEnum {
#[serde(rename = "FIRST_PAYMENT")]
FirstPayment,
#[serde(rename = "ECOMMERCE")]
Ecommerce,
#[serde(rename = "SUBSCRIPTION")]
Subscription,
#[serde(rename = "UNSCHEDULED")]
Unscheduled,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PaymentApiResponse {
pub order: Option<OrderDetailsApiSchema>,
pub processor: Option<PaymentResponseProcessorApiSchema>,
pub date: Option<String>,
pub payment_method: Option<PaymentResponsePaymentMethodOptionsApiSchema>,
pub amount: Option<serde_json::Value>,
pub status_reason: Option<StatusReasonApiSchema>,
pub transactions: Option<Vec<TransactionOverviewApiSchema>>,
pub id: Option<String>,
pub status: Option<String>,
pub required_action: Option<PaymentRequiredActionApiSchema>,
pub metadata: Option<serde_json::Value>,
pub order_id: Option<String>,
pub currency_code: Option<String>,
pub customer_id: Option<String>,
pub customer: Option<CustomerDetailsApiSchema>,
}
impl std::fmt::Display for PaymentApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CheckoutPaymentMethodCardOptionApiSchema {
pub networks: Option<CheckoutPaymentMethodOptionCardNetworkApiSchema>,
}
impl std::fmt::Display for CheckoutPaymentMethodCardOptionApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PayPalBillingAgreementApiSchema {
pub shipping_address: Option<AddressApiSchema>,
pub paypal_billing_agreement_id: String,
pub paypal_status: Option<String>,
pub external_payer_info: Option<PayPalExternalPayerInfoApiSchema>,
}
impl std::fmt::Display for PayPalBillingAgreementApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CreateClientSideTokenClientSessionPostRequired {
pub order: OrderDetailsApiSchema,
pub metadata: serde_json::Value,
pub customer: CheckoutCustomerDetailsApiSchema,
pub customer_id: String,
pub payment_method: CheckoutPaymentMethodOptionsApiSchema,
pub currency_code: String,
pub order_id: String,
pub amount: serde_json::Value,
}
impl std::fmt::Display for CreateClientSideTokenClientSessionPostRequired {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaymentRequiredActionApiSchema {
pub name: String,
pub client_token: Option<String>,
pub description: String,
}
impl std::fmt::Display for PaymentRequiredActionApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum ThreeDSecureSkippedReasonCodeEnum {
#[serde(rename = "GATEWAY_UNAVAILABLE")]
GatewayUnavailable,
#[serde(rename = "DISABLED_BY_MERCHANT")]
DisabledByMerchant,
#[serde(rename = "NOT_SUPPORTED_BY_ISSUER")]
NotSupportedByIssuer,
#[serde(rename = "FAILED_TO_NEGOTIATE")]
FailedToNegotiate,
#[serde(rename = "UNKNOWN_ACS_RESPONSE")]
UnknownAcsResponse,
#[serde(rename = "3DS_SERVER_ERROR")]
ThreeDSecureSkippedReasonCodeEnum3DsServerError,
#[serde(rename = "ACQUIRER_NOT_CONFIGURED")]
AcquirerNotConfigured,
#[serde(rename = "ACQUIRER_NOT_PARTICIPATING")]
AcquirerNotParticipating,
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ClientSessionWarningsApiResponse {
pub type_: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
}
impl std::fmt::Display for ClientSessionWarningsApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct MerchantPaymentMethodTokenApiResponse {
pub token: Option<String>,
pub deleted_at: Option<String>,
pub token_type: Option<String>,
pub payment_method_data: Option<serde_json::Value>,
pub customer_id: Option<String>,
pub deleted: Option<bool>,
pub description: Option<String>,
pub default: Option<bool>,
pub payment_method_type: Option<String>,
pub analytics_id: Option<String>,
pub created_at: Option<String>,
}
impl std::fmt::Display for MerchantPaymentMethodTokenApiResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub enum BlockingPaymentActionTypeEnum {
#[serde(rename = "3DS_AUTHENTICATION")]
BlockingPaymentActionTypeEnum3DsAuthentication,
#[serde(rename = "USE_PRIMER_SDK")]
UsePrimerSdk,
}
#[derive(Debug, Serialize, Deserialize)]
pub enum PrepaidReloadableEnum {
#[serde(rename = "RELOADABLE")]
Reloadable,
#[serde(rename = "NON_RELOADABLE")]
NonReloadable,
#[serde(rename = "NOT_APPLICABLE")]
NotApplicable,
#[serde(rename = "UNKNOWN")]
Unknown,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CheckoutPaymentMethodOptionApiSchema {
pub surcharge: Option<CheckoutPaymentMethodOptionSurchargeApiSchema>,
}
impl std::fmt::Display for CheckoutPaymentMethodOptionApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CoreApiApiCommonsSchemasAddessAddressApiSchema {
pub postal_code: Option<String>,
pub address_line1: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub state: Option<String>,
pub address_line2: Option<String>,
pub city: Option<String>,
pub country_code: Option<CountryCodeEnum>,
}
impl std::fmt::Display for CoreApiApiCommonsSchemasAddessAddressApiSchema {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CountryCodeEnum(pub serde_json::Value);