stripe2 32.0.0

Stripe client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
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
pub use apms_sources_source_list::*;
pub use bank_connections_resource_linked_account_list::*;
pub use credit_note_lines_list::*;
pub use external_account_list::*;
pub use fee_refund_list::*;
pub use file_resource_file_link_list::*;
pub use get_accounts_account_capabilities_response::*;
pub use get_accounts_account_external_accounts_response::*;
pub use get_accounts_account_people_response::*;
pub use get_accounts_account_persons_response::*;
pub use get_accounts_response::*;
pub use get_apple_pay_domains_response::*;
pub use get_application_fees_id_refunds_response::*;
pub use get_application_fees_response::*;
pub use get_apps_secrets_response::*;
pub use get_balance_history_response::*;
pub use get_balance_transactions_response::*;
pub use get_billing_portal_configurations_response::*;
pub use get_charges_charge_refunds_response::*;
pub use get_charges_response::*;
pub use get_charges_search_response::*;
pub use get_checkout_sessions_response::*;
pub use get_checkout_sessions_session_line_items_response::*;
pub use get_climate_orders_response::*;
pub use get_climate_products_response::*;
pub use get_climate_reservations_response::*;
pub use get_climate_suppliers_response::*;
pub use get_country_specs_response::*;
pub use get_coupons_response::*;
pub use get_credit_notes_credit_note_lines_response::*;
pub use get_credit_notes_preview_lines_response::*;
pub use get_credit_notes_response::*;
pub use get_customers_customer_balance_transactions_response::*;
pub use get_customers_customer_bank_accounts_response::*;
pub use get_customers_customer_cards_response::*;
pub use get_customers_customer_cash_balance_transactions_response::*;
pub use get_customers_customer_payment_methods_response::*;
pub use get_customers_customer_sources_response::*;
pub use get_customers_customer_subscriptions_response::*;
pub use get_customers_customer_tax_ids_response::*;
pub use get_customers_response::*;
pub use get_customers_search_response::*;
pub use get_disputes_response::*;
pub use get_events_response::*;
pub use get_exchange_rates_response::*;
pub use get_file_links_response::*;
pub use get_files_response::*;
pub use get_financial_connections_accounts_account_owners_response::*;
pub use get_financial_connections_accounts_response::*;
pub use get_financial_connections_transactions_response::*;
pub use get_identity_verification_reports_response::*;
pub use get_identity_verification_sessions_response::*;
pub use get_invoiceitems_response::*;
pub use get_invoices_invoice_lines_response::*;
pub use get_invoices_response::*;
pub use get_invoices_search_response::*;
pub use get_invoices_upcoming_lines_response::*;
pub use get_issuing_authorizations_response::*;
pub use get_issuing_cardholders_response::*;
pub use get_issuing_cards_response::*;
pub use get_issuing_disputes_response::*;
pub use get_issuing_settlements_response::*;
pub use get_issuing_tokens_response::*;
pub use get_issuing_transactions_response::*;
pub use get_linked_accounts_account_owners_response::*;
pub use get_linked_accounts_response::*;
pub use get_payment_intents_response::*;
pub use get_payment_intents_search_response::*;
pub use get_payment_links_payment_link_line_items_response::*;
pub use get_payment_links_response::*;
pub use get_payment_method_configurations_response::*;
pub use get_payment_method_domains_response::*;
pub use get_payment_methods_response::*;
pub use get_payouts_response::*;
pub use get_plans_response::*;
pub use get_prices_response::*;
pub use get_prices_search_response::*;
pub use get_products_response::*;
pub use get_products_search_response::*;
pub use get_promotion_codes_response::*;
pub use get_quotes_quote_computed_upfront_line_items_response::*;
pub use get_quotes_quote_line_items_response::*;
pub use get_quotes_response::*;
pub use get_radar_early_fraud_warnings_response::*;
pub use get_radar_value_list_items_response::*;
pub use get_radar_value_lists_response::*;
pub use get_refunds_response::*;
pub use get_reporting_report_runs_response::*;
pub use get_reporting_report_types_response::*;
pub use get_reviews_response::*;
pub use get_setup_attempts_response::*;
pub use get_setup_intents_response::*;
pub use get_shipping_rates_response::*;
pub use get_sigma_scheduled_query_runs_response::*;
pub use get_sources_source_source_transactions_response::*;
pub use get_subscription_items_response::*;
pub use get_subscription_items_subscription_item_usage_record_summaries_response::*;
pub use get_subscription_schedules_response::*;
pub use get_subscriptions_response::*;
pub use get_subscriptions_search_response::*;
pub use get_tax_calculations_calculation_line_items_response::*;
pub use get_tax_codes_response::*;
pub use get_tax_rates_response::*;
pub use get_tax_registrations_response::*;
pub use get_tax_transactions_transaction_line_items_response::*;
pub use get_terminal_configurations_response::*;
pub use get_terminal_locations_response::*;
pub use get_terminal_readers_response::*;
pub use get_test_helpers_test_clocks_response::*;
pub use get_topups_response::*;
pub use get_transfers_id_reversals_response::*;
pub use get_transfers_response::*;
pub use get_treasury_credit_reversals_response::*;
pub use get_treasury_debit_reversals_response::*;
pub use get_treasury_financial_accounts_response::*;
pub use get_treasury_inbound_transfers_response::*;
pub use get_treasury_outbound_payments_response::*;
pub use get_treasury_outbound_transfers_response::*;
pub use get_treasury_received_credits_response::*;
pub use get_treasury_received_debits_response::*;
pub use get_treasury_transaction_entries_response::*;
pub use get_treasury_transactions_response::*;
pub use get_webhook_endpoints_response::*;
pub use invoice_lines_list::*;
pub use payment_links_resource_list_line_items::*;
pub use payment_pages_checkout_session_list_line_items::*;
pub use quotes_resource_list_line_items::*;
pub use radar_list_list_item_list::*;
pub use refund_list::*;
pub use subscription_item_list::*;
pub use subscription_list::*;
pub use tax_i_ds_list::*;
pub use tax_product_resource_tax_calculation_line_item_list::*;
pub use tax_product_resource_tax_transaction_line_item_list::*;
pub use transfer_reversal_list::*;
pub use treasury_transactions_resource_transaction_entry_list::*;
pub use aba_access::*;
pub use access::*;
pub use access_with_ach_details::*;
pub use account::*;
pub use account_capabilities::*;
pub use account_capability_future_requirements::*;
pub use account_capability_requirements::*;
pub use account_decline_charge_on::*;
pub use account_future_requirements::*;
pub use account_link::*;
pub use account_requirements::*;
pub use account_requirements_alternative::*;
pub use account_requirements_error::*;
pub use account_session::*;
pub use account_terms_of_service::*;
pub use account_tos_acceptance::*;
pub use account_unification_account_controller::*;
pub use accountholder_params::*;
pub use address::*;
pub use address_specs::*;
pub use after_completion_hosted_confirmation_param::*;
pub use after_completion_redirect_param::*;
pub use all_people_relationship_specs::*;
pub use all_prices_recurring_params::*;
pub use apple_pay_domain::*;
pub use application_fee::*;
pub use apps_secret::*;
pub use automatic_tax::*;
pub use automatic_tax_filter_params::*;
pub use automatic_tax_param::*;
pub use balance::*;
pub use balance_amount::*;
pub use balance_amount_by_source_type::*;
pub use balance_amount_net::*;
pub use balance_detail::*;
pub use balance_transaction::*;
pub use bank_account::*;
pub use bank_connections_resource_link_account_session_filters::*;
pub use bank_connections_resource_transaction_resource_status_transitions::*;
pub use base_features_param::*;
pub use billing_details::*;
pub use billing_portal_configuration::*;
pub use billing_portal_session::*;
pub use capability::*;
pub use card::*;
pub use card_issuing_account_terms_of_service::*;
pub use card_mandate_payment_method_details::*;
pub use cash_balance::*;
pub use charge::*;
pub use checkout_session::*;
pub use checkout_acss_debit_mandate_options::*;
pub use checkout_card_installments_options::*;
pub use checkout_customer_balance_bank_transfer_payment_method_options::*;
pub use climate_order::*;
pub use climate_product::*;
pub use climate_supplier::*;
pub use climate_removals_beneficiary::*;
pub use climate_removals_location::*;
pub use climate_removals_order_deliveries::*;
pub use company_ownership_declaration::*;
pub use connect_embedded_account_session_create_components::*;
pub use connect_embedded_base_config_claim::*;
pub use connect_embedded_base_features::*;
pub use connect_embedded_payments_config::*;
pub use connect_embedded_payments_features::*;
pub use connect_embedded_payouts_config::*;
pub use connect_embedded_payouts_features::*;
pub use country_spec::*;
pub use country_spec_verification_field_details::*;
pub use country_spec_verification_fields::*;
pub use coupon::*;
pub use coupon_applies_to::*;
pub use coupon_offer_param::*;
pub use credit_note::*;
pub use credit_note_line_item::*;
pub use credit_note_line_item_params::*;
pub use credit_note_shipping_cost::*;
pub use credit_note_tax_amount::*;
pub use custom_field_option_param::*;
pub use customer::*;
pub use customer_acceptance::*;
pub use customer_balance_customer_balance_settings::*;
pub use customer_balance_resource_cash_balance_transaction_resource_adjusted_for_overdraft::*;
pub use customer_balance_resource_cash_balance_transaction_resource_applied_to_payment_transaction::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_eu_bank_transfer::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_gb_bank_transfer::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_jp_bank_transfer::*;
pub use customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_us_bank_transfer::*;
pub use customer_balance_resource_cash_balance_transaction_resource_refunded_from_payment_transaction::*;
pub use customer_balance_resource_cash_balance_transaction_resource_transferred_to_balance::*;
pub use customer_balance_resource_cash_balance_transaction_resource_unapplied_from_payment_transaction::*;
pub use customer_balance_transaction::*;
pub use customer_cash_balance_transaction::*;
pub use customer_details_param::*;
pub use customer_details_params::*;
pub use customer_tax::*;
pub use data_params::*;
pub use decline_charge_on_specs::*;
pub use deleted_account::*;
pub use deleted_apple_pay_domain::*;
pub use deleted_coupon::*;
pub use deleted_customer::*;
pub use deleted_discount::*;
pub use deleted_external_account::*;
pub use deleted_invoice::*;
pub use deleted_invoiceitem::*;
pub use deleted_person::*;
pub use deleted_plan::*;
pub use deleted_product::*;
pub use deleted_radar_value_list::*;
pub use deleted_radar_value_list_item::*;
pub use deleted_subscription_item::*;
pub use deleted_tax_id::*;
pub use deleted_terminal_configuration::*;
pub use deleted_terminal_location::*;
pub use deleted_terminal_reader::*;
pub use deleted_test_helpers_test_clock::*;
pub use deleted_webhook_endpoint::*;
pub use delivery_estimate::*;
pub use delivery_estimate_bound::*;
pub use destination_details_unimplemented::*;
pub use discount::*;
pub use discounts_resource_discount_amount::*;
pub use dispute::*;
pub use dispute_evidence::*;
pub use dispute_evidence_details::*;
pub use dispute_payment_method_details::*;
pub use documents_param::*;
pub use end_behavior::*;
pub use ephemeral_key::*;
pub use event::*;
pub use exchange_rate::*;
pub use external_account::*;
pub use fee::*;
pub use fee_refund::*;
pub use file::*;
pub use file_link::*;
pub use financial_connections_account::*;
pub use financial_connections_account_owner::*;
pub use financial_connections_session::*;
pub use financial_connections_transaction::*;
pub use financial_reporting_finance_report_run_run_parameters::*;
pub use fixed_amount::*;
pub use flight_segment_specs::*;
pub use funding_instructions::*;
pub use funding_instructions_bank_transfer::*;
pub use funding_instructions_bank_transfer_aba_record::*;
pub use funding_instructions_bank_transfer_financial_address::*;
pub use funding_instructions_bank_transfer_iban_record::*;
pub use funding_instructions_bank_transfer_sort_code_record::*;
pub use funding_instructions_bank_transfer_spei_record::*;
pub use funding_instructions_bank_transfer_swift_record::*;
pub use funding_instructions_bank_transfer_zengin_record::*;
pub use gelato_document_report::*;
pub use gelato_id_number_report::*;
pub use gelato_report_document_options::*;
pub use gelato_report_id_number_options::*;
pub use gelato_selfie_report::*;
pub use gelato_verification_report_options::*;
pub use identity_verification_report::*;
pub use identity_verification_session::*;
pub use invoice::*;
pub use invoice_item_preview_params::*;
pub use invoice_item_threshold_reason::*;
pub use invoice_line_item_period::*;
pub use invoice_payment_method_options_customer_balance_bank_transfer_eu_bank_transfer::*;
pub use invoice_setting_custom_field::*;
pub use invoice_setting_customer_setting::*;
pub use invoice_setting_quote_setting::*;
pub use invoice_tax_amount::*;
pub use invoice_threshold_reason::*;
pub use invoiceitem::*;
pub use invoices_payment_settings::*;
pub use invoices_resource_invoice_tax_id::*;
pub use invoices_status_transitions::*;
pub use issuing_authorization::*;
pub use issuing_card::*;
pub use issuing_cardholder::*;
pub use issuing_dispute::*;
pub use issuing_settlement::*;
pub use issuing_token::*;
pub use issuing_transaction::*;
pub use issuing_authorization_merchant_data::*;
pub use issuing_authorization_request::*;
pub use issuing_authorization_verification_data::*;
pub use issuing_card_authorization_controls::*;
pub use issuing_card_spending_limit::*;
pub use issuing_cardholder_address::*;
pub use issuing_cardholder_requirements::*;
pub use issuing_dispute_canceled_evidence::*;
pub use issuing_dispute_duplicate_evidence::*;
pub use issuing_dispute_evidence::*;
pub use issuing_dispute_fraudulent_evidence::*;
pub use issuing_dispute_merchandise_not_as_described_evidence::*;
pub use issuing_dispute_not_received_evidence::*;
pub use issuing_dispute_other_evidence::*;
pub use issuing_dispute_service_not_as_described_evidence::*;
pub use issuing_network_token_address::*;
pub use issuing_network_token_device::*;
pub use issuing_network_token_mastercard::*;
pub use issuing_network_token_network_data::*;
pub use issuing_network_token_visa::*;
pub use issuing_network_token_wallet_provider::*;
pub use item::*;
pub use japan_address_kana_specs::*;
pub use japan_address_kanji_specs::*;
pub use legal_entity_company::*;
pub use legal_entity_dob::*;
pub use legal_entity_person_verification::*;
pub use legal_entity_person_verification_document::*;
pub use line_item::*;
pub use line_items_discount_amount::*;
pub use line_items_tax_amount::*;
pub use linked_account_options_us_bank_account::*;
pub use linked_flows_param::*;
pub use local_amusement_tax::*;
pub use local_lease_tax::*;
pub use login_link::*;
pub use mandate::*;
pub use mandate_acss_debit::*;
pub use mandate_au_becs_debit::*;
pub use mandate_bacs_debit::*;
pub use mandate_cashapp::*;
pub use mandate_link::*;
pub use mandate_multi_use::*;
pub use mandate_offline_acceptance_params::*;
pub use mandate_online_acceptance_params::*;
pub use mandate_payment_method_details::*;
pub use mandate_paypal::*;
pub use mandate_sepa_debit::*;
pub use mandate_single_use::*;
pub use mandate_us_bank_account::*;
pub use notification_event_data::*;
pub use offline_acceptance::*;
pub use offline_param::*;
pub use one_time_price_data::*;
pub use one_time_price_data_with_negative_amounts::*;
pub use online_acceptance::*;
pub use online_param::*;
pub use outbound_transfers_payment_method_details::*;
pub use outbound_transfers_payment_method_details_us_bank_account::*;
pub use payment_flows_amount_details::*;
pub use payment_flows_amount_details_resource_tip::*;
pub use payment_flows_private_payment_methods_alipay::*;
pub use payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_extended_authorization_extended_authorization::*;
pub use payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_incremental_authorization_incremental_authorization::*;
pub use payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_overcapture_overcapture::*;
pub use payment_flows_private_payment_methods_card_details_api_resource_multicapture::*;
pub use payment_intent::*;
pub use payment_intent_next_action_cashapp_qr_code::*;
pub use payment_intent_next_action_konbini_stores::*;
pub use payment_intent_processing_customer_notification::*;
pub use payment_link::*;
pub use payment_links_resource_after_completion::*;
pub use payment_links_resource_automatic_tax::*;
pub use payment_links_resource_completion_behavior_confirmation_page::*;
pub use payment_links_resource_completion_behavior_redirect::*;
pub use payment_links_resource_custom_fields::*;
pub use payment_links_resource_custom_fields_dropdown::*;
pub use payment_links_resource_custom_fields_dropdown_option::*;
pub use payment_links_resource_custom_fields_label::*;
pub use payment_links_resource_custom_fields_numeric::*;
pub use payment_links_resource_custom_fields_text::*;
pub use payment_links_resource_custom_text::*;
pub use payment_links_resource_phone_number_collection::*;
pub use payment_links_resource_shipping_option::*;
pub use payment_links_resource_tax_id_collection::*;
pub use payment_method::*;
pub use payment_method_acss_debit::*;
pub use payment_method_affirm::*;
pub use payment_method_afterpay_clearpay::*;
pub use payment_method_au_becs_debit::*;
pub use payment_method_bacs_debit::*;
pub use payment_method_bancontact::*;
pub use payment_method_blik::*;
pub use payment_method_boleto::*;
pub use payment_method_card::*;
pub use payment_method_card_present::*;
pub use payment_method_cashapp::*;
pub use payment_method_config_resource_display_preference::*;
pub use payment_method_config_resource_payment_method_properties::*;
pub use payment_method_configuration::*;
pub use payment_method_customer_balance::*;
pub use payment_method_details_card_installments_plan::*;
pub use payment_method_domain::*;
pub use payment_method_domain_resource_payment_method_status::*;
pub use payment_method_domain_resource_payment_method_status_details::*;
pub use payment_method_eps::*;
pub use payment_method_fpx::*;
pub use payment_method_giropay::*;
pub use payment_method_grabpay::*;
pub use payment_method_ideal::*;
pub use payment_method_interac_present::*;
pub use payment_method_klarna::*;
pub use payment_method_konbini::*;
pub use payment_method_link::*;
pub use payment_method_options_customer_balance_eu_bank_account::*;
pub use payment_method_options_param::*;
pub use payment_method_oxxo::*;
pub use payment_method_p24::*;
pub use payment_method_paynow::*;
pub use payment_method_paypal::*;
pub use payment_method_pix::*;
pub use payment_method_promptpay::*;
pub use payment_method_revolut_pay::*;
pub use payment_method_sepa_debit::*;
pub use payment_method_sofort::*;
pub use payment_method_us_bank_account::*;
pub use payment_method_wechat_pay::*;
pub use payment_method_zip::*;
pub use payment_pages_checkout_session_automatic_tax::*;
pub use payment_pages_checkout_session_custom_fields::*;
pub use payment_pages_checkout_session_custom_fields_dropdown::*;
pub use payment_pages_checkout_session_custom_fields_label::*;
pub use payment_pages_checkout_session_custom_fields_numeric::*;
pub use payment_pages_checkout_session_custom_fields_option::*;
pub use payment_pages_checkout_session_custom_fields_text::*;
pub use payment_pages_checkout_session_custom_text::*;
pub use payment_pages_checkout_session_phone_number_collection::*;
pub use payment_pages_checkout_session_shipping_option::*;
pub use payment_pages_checkout_session_tax_id_collection::*;
pub use payment_source::*;
pub use payments_features_param::*;
pub use payout::*;
pub use payouts_features_param::*;
pub use period::*;
pub use person::*;
pub use person_additional_tos_acceptance::*;
pub use person_additional_tos_acceptances::*;
pub use person_relationship::*;
pub use person_verification_document_param::*;
pub use person_verification_document_specs::*;
pub use person_verification_specs::*;
pub use plan::*;
pub use plan_tier::*;
pub use portal_business_profile::*;
pub use portal_customer_update::*;
pub use portal_features::*;
pub use portal_invoice_list::*;
pub use portal_login_page::*;
pub use portal_payment_method_update::*;
pub use portal_subscription_cancel::*;
pub use portal_subscription_cancellation_reason::*;
pub use portal_subscription_pause::*;
pub use portal_subscription_update::*;
pub use portal_subscription_update_product::*;
pub use price::*;
pub use price_tier::*;
pub use product::*;
pub use product_data::*;
pub use product_feature::*;
pub use promotion_code::*;
pub use promotion_codes_resource_restrictions::*;
pub use province_standard::*;
pub use quote::*;
pub use quotes_resource_automatic_tax::*;
pub use quotes_resource_computed::*;
pub use quotes_resource_status_transitions::*;
pub use quotes_resource_subscription_data_subscription_data::*;
pub use quotes_resource_total_details::*;
pub use quotes_resource_total_details_resource_breakdown::*;
pub use quotes_resource_upfront::*;
pub use radar_early_fraud_warning::*;
pub use radar_value_list::*;
pub use radar_value_list_item::*;
pub use radar_radar_options::*;
pub use received_payment_method_details_financial_account::*;
pub use recurring_adhoc::*;
pub use recurring_price_data::*;
pub use refund::*;
pub use refund_destination_details::*;
pub use refund_destination_details_card::*;
pub use refund_destination_details_generic::*;
pub use refund_next_action::*;
pub use reporting_report_run::*;
pub use reporting_report_type::*;
pub use retention_param::*;
pub use review::*;
pub use scheduled_query_run::*;
pub use schedules_phase_automatic_tax::*;
pub use scope_param::*;
pub use secret_service_resource_scope::*;
pub use settings_terms_of_service_specs::*;
pub use setup_attempt::*;
pub use setup_attempt_payment_method_details::*;
pub use setup_attempt_payment_method_details_acss_debit::*;
pub use setup_attempt_payment_method_details_au_becs_debit::*;
pub use setup_attempt_payment_method_details_bacs_debit::*;
pub use setup_attempt_payment_method_details_bancontact::*;
pub use setup_attempt_payment_method_details_boleto::*;
pub use setup_attempt_payment_method_details_card::*;
pub use setup_attempt_payment_method_details_card_present::*;
pub use setup_attempt_payment_method_details_cashapp::*;
pub use setup_attempt_payment_method_details_ideal::*;
pub use setup_attempt_payment_method_details_klarna::*;
pub use setup_attempt_payment_method_details_link::*;
pub use setup_attempt_payment_method_details_paypal::*;
pub use setup_attempt_payment_method_details_sepa_debit::*;
pub use setup_attempt_payment_method_details_sofort::*;
pub use setup_attempt_payment_method_details_us_bank_account::*;
pub use setup_intent::*;
pub use setup_intent_payment_method_options_mandate_options_param::*;
pub use shipping::*;
pub use shipping_rate::*;
pub use shipping_rate_fixed_amount::*;
pub use sigma_scheduled_query_run_error::*;
pub use source::*;
pub use source_code_verification_flow::*;
pub use source_mandate_notification::*;
pub use source_mandate_notification_acss_debit_data::*;
pub use source_mandate_notification_bacs_debit_data::*;
pub use source_mandate_notification_sepa_debit_data::*;
pub use source_order::*;
pub use source_order_item::*;
pub use source_receiver_flow::*;
pub use source_redirect_flow::*;
pub use source_transaction::*;
pub use source_transaction_ach_credit_transfer_data::*;
pub use source_transaction_chf_credit_transfer_data::*;
pub use source_transaction_gbp_credit_transfer_data::*;
pub use source_transaction_paper_check_data::*;
pub use source_transaction_sepa_credit_transfer_data::*;
pub use source_type_ach_credit_transfer::*;
pub use source_type_ach_debit::*;
pub use source_type_acss_debit::*;
pub use source_type_alipay::*;
pub use source_type_au_becs_debit::*;
pub use source_type_bancontact::*;
pub use source_type_card::*;
pub use source_type_card_present::*;
pub use source_type_eps::*;
pub use source_type_giropay::*;
pub use source_type_ideal::*;
pub use source_type_klarna::*;
pub use source_type_multibanco::*;
pub use source_type_p24::*;
pub use source_type_sepa_debit::*;
pub use source_type_sofort::*;
pub use source_type_three_d_secure::*;
pub use source_type_wechat::*;
pub use standard::*;
pub use status_transition_timestamp_specs::*;
pub use subscription::*;
pub use subscription_automatic_tax::*;
pub use subscription_cancellation_reason_creation_param::*;
pub use subscription_cancellation_reason_updating_param::*;
pub use subscription_item::*;
pub use subscription_item_update_params::*;
pub use subscription_schedule::*;
pub use subscription_schedule_add_invoice_item::*;
pub use subscription_schedule_configuration_item::*;
pub use subscription_schedule_phase_configuration::*;
pub use subscription_schedules_resource_default_settings::*;
pub use subscription_schedules_resource_default_settings_automatic_tax::*;
pub use subscription_update_confirm_discount_params::*;
pub use subscription_update_confirm_item_params::*;
pub use tax_calculation::*;
pub use tax_calculation_line_item::*;
pub use tax_registration::*;
pub use tax_settings::*;
pub use tax_transaction::*;
pub use tax_transaction_line_item::*;
pub use tax_code::*;
pub use tax_id::*;
pub use tax_param::*;
pub use tax_product_registrations_resource_country_options::*;
pub use tax_product_registrations_resource_country_options_ca_province_standard::*;
pub use tax_product_registrations_resource_country_options_canada::*;
pub use tax_product_registrations_resource_country_options_default::*;
pub use tax_product_registrations_resource_country_options_eu_standard::*;
pub use tax_product_registrations_resource_country_options_europe::*;
pub use tax_product_registrations_resource_country_options_simplified::*;
pub use tax_product_registrations_resource_country_options_united_states::*;
pub use tax_product_registrations_resource_country_options_us_local_amusement_tax::*;
pub use tax_product_registrations_resource_country_options_us_local_lease_tax::*;
pub use tax_product_resource_customer_details::*;
pub use tax_product_resource_customer_details_resource_tax_id::*;
pub use tax_product_resource_jurisdiction::*;
pub use tax_product_resource_line_item_tax_breakdown::*;
pub use tax_product_resource_tax_breakdown::*;
pub use tax_product_resource_tax_rate_details::*;
pub use tax_product_resource_tax_settings_defaults::*;
pub use tax_product_resource_tax_settings_status_details::*;
pub use tax_product_resource_tax_settings_status_details_resource_active::*;
pub use tax_product_resource_tax_settings_status_details_resource_pending::*;
pub use tax_rate::*;
pub use terminal_configuration::*;
pub use terminal_connection_token::*;
pub use terminal_location::*;
pub use terminal_reader::*;
pub use terminal_configuration_configuration_resource_currency_specific_config::*;
pub use terminal_configuration_configuration_resource_device_type_specific_config::*;
pub use terminal_configuration_configuration_resource_offline_config::*;
pub use terminal_configuration_configuration_resource_tipping::*;
pub use terminal_reader_reader_resource_process_config::*;
pub use terminal_reader_reader_resource_process_setup_config::*;
pub use terminal_reader_reader_resource_tipping_config::*;
pub use terms_acceptance_param::*;
pub use test_helpers_test_clock::*;
pub use token::*;
pub use topup::*;
pub use transaction_refresh_params::*;
pub use transfer::*;
pub use transfer_reversal::*;
pub use transfer_schedule::*;
pub use transfer_schedule_specs::*;
pub use treasury_credit_reversal::*;
pub use treasury_debit_reversal::*;
pub use treasury_financial_account::*;
pub use treasury_financial_account_features::*;
pub use treasury_inbound_transfer::*;
pub use treasury_outbound_payment::*;
pub use treasury_outbound_transfer::*;
pub use treasury_received_credit::*;
pub use treasury_received_debit::*;
pub use treasury_transaction::*;
pub use treasury_transaction_entry::*;
pub use treasury_financial_accounts_resource_aba_record::*;
pub use treasury_financial_accounts_resource_aba_toggle_settings::*;
pub use treasury_financial_accounts_resource_ach_toggle_settings::*;
pub use treasury_financial_accounts_resource_balance::*;
pub use treasury_financial_accounts_resource_financial_address::*;
pub use treasury_financial_accounts_resource_financial_addresses_features::*;
pub use treasury_financial_accounts_resource_inbound_transfers::*;
pub use treasury_financial_accounts_resource_outbound_payments::*;
pub use treasury_financial_accounts_resource_outbound_transfers::*;
pub use treasury_financial_accounts_resource_status_details::*;
pub use treasury_financial_accounts_resource_toggle_settings::*;
pub use treasury_financial_accounts_resource_toggles_setting_status_details::*;
pub use treasury_inbound_transfers_resource_inbound_transfer_resource_linked_flows::*;
pub use treasury_inbound_transfers_resource_inbound_transfer_resource_status_transitions::*;
pub use treasury_outbound_payments_resource_outbound_payment_resource_status_transitions::*;
pub use treasury_outbound_transfers_resource_status_transitions::*;
pub use treasury_received_credits_resource_linked_flows::*;
pub use treasury_received_credits_resource_status_transitions::*;
pub use treasury_received_debits_resource_linked_flows::*;
pub use treasury_received_debits_resource_status_transitions::*;
pub use treasury_shared_resource_billing_details::*;
pub use treasury_shared_resource_initiating_payment_method_details_initiating_payment_method_details::*;
pub use treasury_shared_resource_initiating_payment_method_details_us_bank_account::*;
pub use treasury_transactions_resource_abstract_transaction_resource_status_transitions::*;
pub use treasury_transactions_resource_balance_impact::*;
pub use usage_record::*;
pub use usage_record_summary::*;
pub use verification_document_specs::*;
pub use verification_specs::*;
pub use webhook_endpoint::*;
mod apms_sources_source_list;
mod bank_connections_resource_linked_account_list;
mod credit_note_lines_list;
mod external_account_list;
mod fee_refund_list;
mod file_resource_file_link_list;
mod get_accounts_account_capabilities_response;
mod get_accounts_account_external_accounts_response;
mod get_accounts_account_people_response;
mod get_accounts_account_persons_response;
mod get_accounts_response;
mod get_apple_pay_domains_response;
mod get_application_fees_id_refunds_response;
mod get_application_fees_response;
mod get_apps_secrets_response;
mod get_balance_history_response;
mod get_balance_transactions_response;
mod get_billing_portal_configurations_response;
mod get_charges_charge_refunds_response;
mod get_charges_response;
mod get_charges_search_response;
mod get_checkout_sessions_response;
mod get_checkout_sessions_session_line_items_response;
mod get_climate_orders_response;
mod get_climate_products_response;
mod get_climate_reservations_response;
mod get_climate_suppliers_response;
mod get_country_specs_response;
mod get_coupons_response;
mod get_credit_notes_credit_note_lines_response;
mod get_credit_notes_preview_lines_response;
mod get_credit_notes_response;
mod get_customers_customer_balance_transactions_response;
mod get_customers_customer_bank_accounts_response;
mod get_customers_customer_cards_response;
mod get_customers_customer_cash_balance_transactions_response;
mod get_customers_customer_payment_methods_response;
mod get_customers_customer_sources_response;
mod get_customers_customer_subscriptions_response;
mod get_customers_customer_tax_ids_response;
mod get_customers_response;
mod get_customers_search_response;
mod get_disputes_response;
mod get_events_response;
mod get_exchange_rates_response;
mod get_file_links_response;
mod get_files_response;
mod get_financial_connections_accounts_account_owners_response;
mod get_financial_connections_accounts_response;
mod get_financial_connections_transactions_response;
mod get_identity_verification_reports_response;
mod get_identity_verification_sessions_response;
mod get_invoiceitems_response;
mod get_invoices_invoice_lines_response;
mod get_invoices_response;
mod get_invoices_search_response;
mod get_invoices_upcoming_lines_response;
mod get_issuing_authorizations_response;
mod get_issuing_cardholders_response;
mod get_issuing_cards_response;
mod get_issuing_disputes_response;
mod get_issuing_settlements_response;
mod get_issuing_tokens_response;
mod get_issuing_transactions_response;
mod get_linked_accounts_account_owners_response;
mod get_linked_accounts_response;
mod get_payment_intents_response;
mod get_payment_intents_search_response;
mod get_payment_links_payment_link_line_items_response;
mod get_payment_links_response;
mod get_payment_method_configurations_response;
mod get_payment_method_domains_response;
mod get_payment_methods_response;
mod get_payouts_response;
mod get_plans_response;
mod get_prices_response;
mod get_prices_search_response;
mod get_products_response;
mod get_products_search_response;
mod get_promotion_codes_response;
mod get_quotes_quote_computed_upfront_line_items_response;
mod get_quotes_quote_line_items_response;
mod get_quotes_response;
mod get_radar_early_fraud_warnings_response;
mod get_radar_value_list_items_response;
mod get_radar_value_lists_response;
mod get_refunds_response;
mod get_reporting_report_runs_response;
mod get_reporting_report_types_response;
mod get_reviews_response;
mod get_setup_attempts_response;
mod get_setup_intents_response;
mod get_shipping_rates_response;
mod get_sigma_scheduled_query_runs_response;
mod get_sources_source_source_transactions_response;
mod get_subscription_items_response;
mod get_subscription_items_subscription_item_usage_record_summaries_response;
mod get_subscription_schedules_response;
mod get_subscriptions_response;
mod get_subscriptions_search_response;
mod get_tax_calculations_calculation_line_items_response;
mod get_tax_codes_response;
mod get_tax_rates_response;
mod get_tax_registrations_response;
mod get_tax_transactions_transaction_line_items_response;
mod get_terminal_configurations_response;
mod get_terminal_locations_response;
mod get_terminal_readers_response;
mod get_test_helpers_test_clocks_response;
mod get_topups_response;
mod get_transfers_id_reversals_response;
mod get_transfers_response;
mod get_treasury_credit_reversals_response;
mod get_treasury_debit_reversals_response;
mod get_treasury_financial_accounts_response;
mod get_treasury_inbound_transfers_response;
mod get_treasury_outbound_payments_response;
mod get_treasury_outbound_transfers_response;
mod get_treasury_received_credits_response;
mod get_treasury_received_debits_response;
mod get_treasury_transaction_entries_response;
mod get_treasury_transactions_response;
mod get_webhook_endpoints_response;
mod invoice_lines_list;
mod payment_links_resource_list_line_items;
mod payment_pages_checkout_session_list_line_items;
mod quotes_resource_list_line_items;
mod radar_list_list_item_list;
mod refund_list;
mod subscription_item_list;
mod subscription_list;
mod tax_i_ds_list;
mod tax_product_resource_tax_calculation_line_item_list;
mod tax_product_resource_tax_transaction_line_item_list;
mod transfer_reversal_list;
mod treasury_transactions_resource_transaction_entry_list;
mod aba_access;
mod access;
mod access_with_ach_details;
mod account;
mod account_capabilities;
mod account_capability_future_requirements;
mod account_capability_requirements;
mod account_decline_charge_on;
mod account_future_requirements;
mod account_link;
mod account_requirements;
mod account_requirements_alternative;
mod account_requirements_error;
mod account_session;
mod account_terms_of_service;
mod account_tos_acceptance;
mod account_unification_account_controller;
mod accountholder_params;
mod address;
mod address_specs;
mod after_completion_hosted_confirmation_param;
mod after_completion_redirect_param;
mod all_people_relationship_specs;
mod all_prices_recurring_params;
mod apple_pay_domain;
mod application_fee;
mod apps_secret;
mod automatic_tax;
mod automatic_tax_filter_params;
mod automatic_tax_param;
mod balance;
mod balance_amount;
mod balance_amount_by_source_type;
mod balance_amount_net;
mod balance_detail;
mod balance_transaction;
mod bank_account;
mod bank_connections_resource_link_account_session_filters;
mod bank_connections_resource_transaction_resource_status_transitions;
mod base_features_param;
mod billing_details;
mod billing_portal_configuration;
mod billing_portal_session;
mod capability;
mod card;
mod card_issuing_account_terms_of_service;
mod card_mandate_payment_method_details;
mod cash_balance;
mod charge;
mod checkout_session;
mod checkout_acss_debit_mandate_options;
mod checkout_card_installments_options;
mod checkout_customer_balance_bank_transfer_payment_method_options;
mod climate_order;
mod climate_product;
mod climate_supplier;
mod climate_removals_beneficiary;
mod climate_removals_location;
mod climate_removals_order_deliveries;
mod company_ownership_declaration;
mod connect_embedded_account_session_create_components;
mod connect_embedded_base_config_claim;
mod connect_embedded_base_features;
mod connect_embedded_payments_config;
mod connect_embedded_payments_features;
mod connect_embedded_payouts_config;
mod connect_embedded_payouts_features;
mod country_spec;
mod country_spec_verification_field_details;
mod country_spec_verification_fields;
mod coupon;
mod coupon_applies_to;
mod coupon_offer_param;
mod credit_note;
mod credit_note_line_item;
mod credit_note_line_item_params;
mod credit_note_shipping_cost;
mod credit_note_tax_amount;
mod custom_field_option_param;
mod customer;
mod customer_acceptance;
mod customer_balance_customer_balance_settings;
mod customer_balance_resource_cash_balance_transaction_resource_adjusted_for_overdraft;
mod customer_balance_resource_cash_balance_transaction_resource_applied_to_payment_transaction;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_eu_bank_transfer;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_gb_bank_transfer;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_jp_bank_transfer;
mod customer_balance_resource_cash_balance_transaction_resource_funded_transaction_resource_bank_transfer_resource_us_bank_transfer;
mod customer_balance_resource_cash_balance_transaction_resource_refunded_from_payment_transaction;
mod customer_balance_resource_cash_balance_transaction_resource_transferred_to_balance;
mod customer_balance_resource_cash_balance_transaction_resource_unapplied_from_payment_transaction;
mod customer_balance_transaction;
mod customer_cash_balance_transaction;
mod customer_details_param;
mod customer_details_params;
mod customer_tax;
mod data_params;
mod decline_charge_on_specs;
mod deleted_account;
mod deleted_apple_pay_domain;
mod deleted_coupon;
mod deleted_customer;
mod deleted_discount;
mod deleted_external_account;
mod deleted_invoice;
mod deleted_invoiceitem;
mod deleted_person;
mod deleted_plan;
mod deleted_product;
mod deleted_radar_value_list;
mod deleted_radar_value_list_item;
mod deleted_subscription_item;
mod deleted_tax_id;
mod deleted_terminal_configuration;
mod deleted_terminal_location;
mod deleted_terminal_reader;
mod deleted_test_helpers_test_clock;
mod deleted_webhook_endpoint;
mod delivery_estimate;
mod delivery_estimate_bound;
mod destination_details_unimplemented;
mod discount;
mod discounts_resource_discount_amount;
mod dispute;
mod dispute_evidence;
mod dispute_evidence_details;
mod dispute_payment_method_details;
mod documents_param;
mod end_behavior;
mod ephemeral_key;
mod event;
mod exchange_rate;
mod external_account;
mod fee;
mod fee_refund;
mod file;
mod file_link;
mod financial_connections_account;
mod financial_connections_account_owner;
mod financial_connections_session;
mod financial_connections_transaction;
mod financial_reporting_finance_report_run_run_parameters;
mod fixed_amount;
mod flight_segment_specs;
mod funding_instructions;
mod funding_instructions_bank_transfer;
mod funding_instructions_bank_transfer_aba_record;
mod funding_instructions_bank_transfer_financial_address;
mod funding_instructions_bank_transfer_iban_record;
mod funding_instructions_bank_transfer_sort_code_record;
mod funding_instructions_bank_transfer_spei_record;
mod funding_instructions_bank_transfer_swift_record;
mod funding_instructions_bank_transfer_zengin_record;
mod gelato_document_report;
mod gelato_id_number_report;
mod gelato_report_document_options;
mod gelato_report_id_number_options;
mod gelato_selfie_report;
mod gelato_verification_report_options;
mod identity_verification_report;
mod identity_verification_session;
mod invoice;
mod invoice_item_preview_params;
mod invoice_item_threshold_reason;
mod invoice_line_item_period;
mod invoice_payment_method_options_customer_balance_bank_transfer_eu_bank_transfer;
mod invoice_setting_custom_field;
mod invoice_setting_customer_setting;
mod invoice_setting_quote_setting;
mod invoice_tax_amount;
mod invoice_threshold_reason;
mod invoiceitem;
mod invoices_payment_settings;
mod invoices_resource_invoice_tax_id;
mod invoices_status_transitions;
mod issuing_authorization;
mod issuing_card;
mod issuing_cardholder;
mod issuing_dispute;
mod issuing_settlement;
mod issuing_token;
mod issuing_transaction;
mod issuing_authorization_merchant_data;
mod issuing_authorization_request;
mod issuing_authorization_verification_data;
mod issuing_card_authorization_controls;
mod issuing_card_spending_limit;
mod issuing_cardholder_address;
mod issuing_cardholder_requirements;
mod issuing_dispute_canceled_evidence;
mod issuing_dispute_duplicate_evidence;
mod issuing_dispute_evidence;
mod issuing_dispute_fraudulent_evidence;
mod issuing_dispute_merchandise_not_as_described_evidence;
mod issuing_dispute_not_received_evidence;
mod issuing_dispute_other_evidence;
mod issuing_dispute_service_not_as_described_evidence;
mod issuing_network_token_address;
mod issuing_network_token_device;
mod issuing_network_token_mastercard;
mod issuing_network_token_network_data;
mod issuing_network_token_visa;
mod issuing_network_token_wallet_provider;
mod item;
mod japan_address_kana_specs;
mod japan_address_kanji_specs;
mod legal_entity_company;
mod legal_entity_dob;
mod legal_entity_person_verification;
mod legal_entity_person_verification_document;
mod line_item;
mod line_items_discount_amount;
mod line_items_tax_amount;
mod linked_account_options_us_bank_account;
mod linked_flows_param;
mod local_amusement_tax;
mod local_lease_tax;
mod login_link;
mod mandate;
mod mandate_acss_debit;
mod mandate_au_becs_debit;
mod mandate_bacs_debit;
mod mandate_cashapp;
mod mandate_link;
mod mandate_multi_use;
mod mandate_offline_acceptance_params;
mod mandate_online_acceptance_params;
mod mandate_payment_method_details;
mod mandate_paypal;
mod mandate_sepa_debit;
mod mandate_single_use;
mod mandate_us_bank_account;
mod notification_event_data;
mod offline_acceptance;
mod offline_param;
mod one_time_price_data;
mod one_time_price_data_with_negative_amounts;
mod online_acceptance;
mod online_param;
mod outbound_transfers_payment_method_details;
mod outbound_transfers_payment_method_details_us_bank_account;
mod payment_flows_amount_details;
mod payment_flows_amount_details_resource_tip;
mod payment_flows_private_payment_methods_alipay;
mod payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_extended_authorization_extended_authorization;
mod payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_incremental_authorization_incremental_authorization;
mod payment_flows_private_payment_methods_card_details_api_resource_enterprise_features_overcapture_overcapture;
mod payment_flows_private_payment_methods_card_details_api_resource_multicapture;
mod payment_intent;
mod payment_intent_next_action_cashapp_qr_code;
mod payment_intent_next_action_konbini_stores;
mod payment_intent_processing_customer_notification;
mod payment_link;
mod payment_links_resource_after_completion;
mod payment_links_resource_automatic_tax;
mod payment_links_resource_completion_behavior_confirmation_page;
mod payment_links_resource_completion_behavior_redirect;
mod payment_links_resource_custom_fields;
mod payment_links_resource_custom_fields_dropdown;
mod payment_links_resource_custom_fields_dropdown_option;
mod payment_links_resource_custom_fields_label;
mod payment_links_resource_custom_fields_numeric;
mod payment_links_resource_custom_fields_text;
mod payment_links_resource_custom_text;
mod payment_links_resource_phone_number_collection;
mod payment_links_resource_shipping_option;
mod payment_links_resource_tax_id_collection;
mod payment_method;
mod payment_method_acss_debit;
mod payment_method_affirm;
mod payment_method_afterpay_clearpay;
mod payment_method_au_becs_debit;
mod payment_method_bacs_debit;
mod payment_method_bancontact;
mod payment_method_blik;
mod payment_method_boleto;
mod payment_method_card;
mod payment_method_card_present;
mod payment_method_cashapp;
mod payment_method_config_resource_display_preference;
mod payment_method_config_resource_payment_method_properties;
mod payment_method_configuration;
mod payment_method_customer_balance;
mod payment_method_details_card_installments_plan;
mod payment_method_domain;
mod payment_method_domain_resource_payment_method_status;
mod payment_method_domain_resource_payment_method_status_details;
mod payment_method_eps;
mod payment_method_fpx;
mod payment_method_giropay;
mod payment_method_grabpay;
mod payment_method_ideal;
mod payment_method_interac_present;
mod payment_method_klarna;
mod payment_method_konbini;
mod payment_method_link;
mod payment_method_options_customer_balance_eu_bank_account;
mod payment_method_options_param;
mod payment_method_oxxo;
mod payment_method_p24;
mod payment_method_paynow;
mod payment_method_paypal;
mod payment_method_pix;
mod payment_method_promptpay;
mod payment_method_revolut_pay;
mod payment_method_sepa_debit;
mod payment_method_sofort;
mod payment_method_us_bank_account;
mod payment_method_wechat_pay;
mod payment_method_zip;
mod payment_pages_checkout_session_automatic_tax;
mod payment_pages_checkout_session_custom_fields;
mod payment_pages_checkout_session_custom_fields_dropdown;
mod payment_pages_checkout_session_custom_fields_label;
mod payment_pages_checkout_session_custom_fields_numeric;
mod payment_pages_checkout_session_custom_fields_option;
mod payment_pages_checkout_session_custom_fields_text;
mod payment_pages_checkout_session_custom_text;
mod payment_pages_checkout_session_phone_number_collection;
mod payment_pages_checkout_session_shipping_option;
mod payment_pages_checkout_session_tax_id_collection;
mod payment_source;
mod payments_features_param;
mod payout;
mod payouts_features_param;
mod period;
mod person;
mod person_additional_tos_acceptance;
mod person_additional_tos_acceptances;
mod person_relationship;
mod person_verification_document_param;
mod person_verification_document_specs;
mod person_verification_specs;
mod plan;
mod plan_tier;
mod portal_business_profile;
mod portal_customer_update;
mod portal_features;
mod portal_invoice_list;
mod portal_login_page;
mod portal_payment_method_update;
mod portal_subscription_cancel;
mod portal_subscription_cancellation_reason;
mod portal_subscription_pause;
mod portal_subscription_update;
mod portal_subscription_update_product;
mod price;
mod price_tier;
mod product;
mod product_data;
mod product_feature;
mod promotion_code;
mod promotion_codes_resource_restrictions;
mod province_standard;
mod quote;
mod quotes_resource_automatic_tax;
mod quotes_resource_computed;
mod quotes_resource_status_transitions;
mod quotes_resource_subscription_data_subscription_data;
mod quotes_resource_total_details;
mod quotes_resource_total_details_resource_breakdown;
mod quotes_resource_upfront;
mod radar_early_fraud_warning;
mod radar_value_list;
mod radar_value_list_item;
mod radar_radar_options;
mod received_payment_method_details_financial_account;
mod recurring_adhoc;
mod recurring_price_data;
mod refund;
mod refund_destination_details;
mod refund_destination_details_card;
mod refund_destination_details_generic;
mod refund_next_action;
mod reporting_report_run;
mod reporting_report_type;
mod retention_param;
mod review;
mod scheduled_query_run;
mod schedules_phase_automatic_tax;
mod scope_param;
mod secret_service_resource_scope;
mod settings_terms_of_service_specs;
mod setup_attempt;
mod setup_attempt_payment_method_details;
mod setup_attempt_payment_method_details_acss_debit;
mod setup_attempt_payment_method_details_au_becs_debit;
mod setup_attempt_payment_method_details_bacs_debit;
mod setup_attempt_payment_method_details_bancontact;
mod setup_attempt_payment_method_details_boleto;
mod setup_attempt_payment_method_details_card;
mod setup_attempt_payment_method_details_card_present;
mod setup_attempt_payment_method_details_cashapp;
mod setup_attempt_payment_method_details_ideal;
mod setup_attempt_payment_method_details_klarna;
mod setup_attempt_payment_method_details_link;
mod setup_attempt_payment_method_details_paypal;
mod setup_attempt_payment_method_details_sepa_debit;
mod setup_attempt_payment_method_details_sofort;
mod setup_attempt_payment_method_details_us_bank_account;
mod setup_intent;
mod setup_intent_payment_method_options_mandate_options_param;
mod shipping;
mod shipping_rate;
mod shipping_rate_fixed_amount;
mod sigma_scheduled_query_run_error;
mod source;
mod source_code_verification_flow;
mod source_mandate_notification;
mod source_mandate_notification_acss_debit_data;
mod source_mandate_notification_bacs_debit_data;
mod source_mandate_notification_sepa_debit_data;
mod source_order;
mod source_order_item;
mod source_receiver_flow;
mod source_redirect_flow;
mod source_transaction;
mod source_transaction_ach_credit_transfer_data;
mod source_transaction_chf_credit_transfer_data;
mod source_transaction_gbp_credit_transfer_data;
mod source_transaction_paper_check_data;
mod source_transaction_sepa_credit_transfer_data;
mod source_type_ach_credit_transfer;
mod source_type_ach_debit;
mod source_type_acss_debit;
mod source_type_alipay;
mod source_type_au_becs_debit;
mod source_type_bancontact;
mod source_type_card;
mod source_type_card_present;
mod source_type_eps;
mod source_type_giropay;
mod source_type_ideal;
mod source_type_klarna;
mod source_type_multibanco;
mod source_type_p24;
mod source_type_sepa_debit;
mod source_type_sofort;
mod source_type_three_d_secure;
mod source_type_wechat;
mod standard;
mod status_transition_timestamp_specs;
mod subscription;
mod subscription_automatic_tax;
mod subscription_cancellation_reason_creation_param;
mod subscription_cancellation_reason_updating_param;
mod subscription_item;
mod subscription_item_update_params;
mod subscription_schedule;
mod subscription_schedule_add_invoice_item;
mod subscription_schedule_configuration_item;
mod subscription_schedule_phase_configuration;
mod subscription_schedules_resource_default_settings;
mod subscription_schedules_resource_default_settings_automatic_tax;
mod subscription_update_confirm_discount_params;
mod subscription_update_confirm_item_params;
mod tax_calculation;
mod tax_calculation_line_item;
mod tax_registration;
mod tax_settings;
mod tax_transaction;
mod tax_transaction_line_item;
mod tax_code;
mod tax_id;
mod tax_param;
mod tax_product_registrations_resource_country_options;
mod tax_product_registrations_resource_country_options_ca_province_standard;
mod tax_product_registrations_resource_country_options_canada;
mod tax_product_registrations_resource_country_options_default;
mod tax_product_registrations_resource_country_options_eu_standard;
mod tax_product_registrations_resource_country_options_europe;
mod tax_product_registrations_resource_country_options_simplified;
mod tax_product_registrations_resource_country_options_united_states;
mod tax_product_registrations_resource_country_options_us_local_amusement_tax;
mod tax_product_registrations_resource_country_options_us_local_lease_tax;
mod tax_product_resource_customer_details;
mod tax_product_resource_customer_details_resource_tax_id;
mod tax_product_resource_jurisdiction;
mod tax_product_resource_line_item_tax_breakdown;
mod tax_product_resource_tax_breakdown;
mod tax_product_resource_tax_rate_details;
mod tax_product_resource_tax_settings_defaults;
mod tax_product_resource_tax_settings_status_details;
mod tax_product_resource_tax_settings_status_details_resource_active;
mod tax_product_resource_tax_settings_status_details_resource_pending;
mod tax_rate;
mod terminal_configuration;
mod terminal_connection_token;
mod terminal_location;
mod terminal_reader;
mod terminal_configuration_configuration_resource_currency_specific_config;
mod terminal_configuration_configuration_resource_device_type_specific_config;
mod terminal_configuration_configuration_resource_offline_config;
mod terminal_configuration_configuration_resource_tipping;
mod terminal_reader_reader_resource_process_config;
mod terminal_reader_reader_resource_process_setup_config;
mod terminal_reader_reader_resource_tipping_config;
mod terms_acceptance_param;
mod test_helpers_test_clock;
mod token;
mod topup;
mod transaction_refresh_params;
mod transfer;
mod transfer_reversal;
mod transfer_schedule;
mod transfer_schedule_specs;
mod treasury_credit_reversal;
mod treasury_debit_reversal;
mod treasury_financial_account;
mod treasury_financial_account_features;
mod treasury_inbound_transfer;
mod treasury_outbound_payment;
mod treasury_outbound_transfer;
mod treasury_received_credit;
mod treasury_received_debit;
mod treasury_transaction;
mod treasury_transaction_entry;
mod treasury_financial_accounts_resource_aba_record;
mod treasury_financial_accounts_resource_aba_toggle_settings;
mod treasury_financial_accounts_resource_ach_toggle_settings;
mod treasury_financial_accounts_resource_balance;
mod treasury_financial_accounts_resource_financial_address;
mod treasury_financial_accounts_resource_financial_addresses_features;
mod treasury_financial_accounts_resource_inbound_transfers;
mod treasury_financial_accounts_resource_outbound_payments;
mod treasury_financial_accounts_resource_outbound_transfers;
mod treasury_financial_accounts_resource_status_details;
mod treasury_financial_accounts_resource_toggle_settings;
mod treasury_financial_accounts_resource_toggles_setting_status_details;
mod treasury_inbound_transfers_resource_inbound_transfer_resource_linked_flows;
mod treasury_inbound_transfers_resource_inbound_transfer_resource_status_transitions;
mod treasury_outbound_payments_resource_outbound_payment_resource_status_transitions;
mod treasury_outbound_transfers_resource_status_transitions;
mod treasury_received_credits_resource_linked_flows;
mod treasury_received_credits_resource_status_transitions;
mod treasury_received_debits_resource_linked_flows;
mod treasury_received_debits_resource_status_transitions;
mod treasury_shared_resource_billing_details;
mod treasury_shared_resource_initiating_payment_method_details_initiating_payment_method_details;
mod treasury_shared_resource_initiating_payment_method_details_us_bank_account;
mod treasury_transactions_resource_abstract_transaction_resource_status_transitions;
mod treasury_transactions_resource_balance_impact;
mod usage_record;
mod usage_record_summary;
mod verification_document_specs;
mod verification_specs;
mod webhook_endpoint;