-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.manifest.json
1281 lines (1281 loc) · 66.7 KB
/
.manifest.json
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
{
"liblabVersion": "2.9.7",
"date": "2024-12-17T10:23:54.227Z",
"config": {
"apiId": 1560,
"sdkName": "rapyd-sdk",
"sdkVersion": "1.0.12",
"languages": ["python"],
"auth": ["bearer"],
"docs": ["snippets"],
"liblabVersion": "2",
"deliveryMethods": ["zip"],
"apiVersion": "1.0.12",
"apiName": "rapyd",
"specFilePath": "../rapyd-rapyd/rapyd-openapi-rapyd.yaml",
"languageOptions": {
"csharp": {
"packageId": "The NuGet package Id to set for the C# SDK project",
"sdkVersion": "1.0.12"
},
"go": {
"goModuleName": "Go module to use for the SDK set in the go.mod file",
"sdkVersion": "1.0.12"
},
"java": {
"groupId": "The Maven group ID to use for the SDK",
"liblabVersion": "2",
"sdkVersion": "1.0.12"
},
"python": {
"alwaysInitializeOptionals": true,
"classifiers": [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
"enforceRequestValidation": true,
"projectUrls": {
"Homepage": "https://github.com/Rapyd-Samples/Rapyd-Python-SDK",
"Documentation": "https://docs.rapyd.net/en/index-en.html",
"License": "https://github.com/Rapyd-Samples/RapydOpenAPI/blob/master/LICENSE.md"
},
"pypiPackageName": "rapyd-sdk",
"githubRepoName": "Rapyd-Python-SDK",
"ignoreFiles": [],
"liblabVersion": "2",
"sdkVersion": "1.0.12"
},
"typescript": {
"bundle": false,
"denoteCommon": true,
"exportClassDefault": false,
"httpClient": "axios",
"npmName": "",
"npmOrg": "",
"githubRepoName": "Rapyd-Typescript-SDK",
"homepage": "https://github.com/Rapyd-Samples/Rapyd-Typescript-SDK",
"ignoreFiles": [],
"liblabVersion": "2",
"sdkVersion": "1.0.12",
"generateEnumAs": "enum"
}
},
"publishing": {
"githubOrg": "liblaber"
},
"devContainer": true,
"environmentVariables": [
{
"description": "Access Key parameter",
"name": "ACCESS_KEY"
},
{
"description": "Secret Key parameter",
"name": "SECRET_KEY"
}
],
"environments": [
{
"name": "Sandbox",
"url": "https://sandboxapi.rapyd.net"
},
{
"name": "Production",
"url": "https://api.rapyd.net"
}
],
"generateEnv": true,
"includeOptionalSnippetParameters": true,
"inferServiceNames": false,
"injectedModels": [],
"license": {
"type": "CUSTOM",
"url": "https://github.com/Rapyd-Samples/RapydOpenAPI/blob/master/LICENSE.md"
},
"responseHeaders": false,
"retry": {
"enabled": true,
"maxAttempts": 3,
"retryDelay": 150,
"maxDelay": 5000,
"retryDelayJitter": 50,
"backOffFactor": 2,
"httpCodesToRetry": [408, 429, 500, 502, 503, 504],
"httpMethodsToRetry": ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]
},
"readme": {
"apiDescription": "This is a Beta release of the Python SDK for Rapyd's API methods. It is recommended to initially run the methods in the sandbox environment. For the most up to date documentation of Rapyd's methods, see the [online API Reference](https://docs.rapyd.net/en/index-en.html)."
},
"multiTenant": true,
"hooksLocation": {
"bucketKey": "8498/hooks.zip",
"bucketName": "prod-liblab-api-stack-hooks"
},
"includeWatermark": false,
"alwaysInitializeOptionals": true,
"classifiers": [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
"enforceRequestValidation": true,
"projectUrls": {
"Homepage": "https://github.com/Rapyd-Samples/Rapyd-Python-SDK",
"Documentation": "https://docs.rapyd.net/en/index-en.html",
"License": "https://github.com/Rapyd-Samples/RapydOpenAPI/blob/master/LICENSE.md"
},
"pypiPackageName": "rapyd-sdk",
"githubRepoName": "Rapyd-Python-SDK",
"ignoreFiles": [],
"language": "python",
"deliveryMethod": "zip",
"hooks": {
"enabled": true,
"sourceDir": "/tmp/resources/hooks"
},
"usesFormData": false,
"authentication": {},
"fileOutput": "/tmp",
"httpLibrary": {
"name": "axios",
"packages": {
"axios": "^1.7.7"
},
"languages": ["typescript"]
},
"customQueries": {
"paths": [],
"rawQueries": [],
"queriesData": []
},
"ai": false
},
"files": [
"src/rapyd_sdk/models/utils/base_model.py",
"src/rapyd_sdk/models/utils/json_map.py",
"src/rapyd_sdk/models/__init__.py",
"src/rapyd_sdk/services/__init__.py",
"src/rapyd_sdk/services/utils/__init__.py",
"src/rapyd_sdk/__init__.py",
"src/rapyd_sdk/net/__init__.py",
"src/rapyd_sdk/net/headers/__init__.py",
"src/rapyd_sdk/net/transport/__init__.py",
"src/rapyd_sdk/hooks/__init__.py",
"src/rapyd_sdk/net/environment/__init__.py",
"src/rapyd_sdk/net/request_chain/__init__.py",
"src/rapyd_sdk/net/request_chain/handlers/__init__.py",
"src/rapyd_sdk/models/utils/__init__.py",
"src/rapyd_sdk/net/transport/request.py",
"src/rapyd_sdk/net/transport/response.py",
"src/rapyd_sdk/net/transport/request_error.py",
"src/rapyd_sdk/sdk.py",
"src/rapyd_sdk/net/transport/serializer.py",
"src/rapyd_sdk/services/utils/validator.py",
"src/rapyd_sdk/services/utils/base_service.py",
"pyproject.toml",
".gitignore",
"src/rapyd_sdk/models/utils/cast_models.py",
"src/rapyd_sdk/net/transport/utils.py",
"src/rapyd_sdk/hooks/hook.py",
"install.sh",
"install.cmd",
"examples/install.sh",
"examples/install.cmd",
"src/rapyd_sdk/net/headers/base_header.py",
"src/rapyd_sdk/net/environment/environment.py",
"src/rapyd_sdk/net/request_chain/request_chain.py",
"src/rapyd_sdk/net/request_chain/handlers/base_handler.py",
"src/rapyd_sdk/net/request_chain/handlers/http_handler.py",
"src/rapyd_sdk/net/request_chain/handlers/hook_handler.py",
"src/rapyd_sdk/net/request_chain/handlers/retry_handler.py",
"examples/sample.py",
".env.example",
"/examples/.env.example",
"src/rapyd_sdk/services/utils/default_headers.py",
".devcontainer/devcontainer.json",
"documentation/snippets/v1-payment_methods-countries-{countryId}-get.md",
"documentation/snippets/v1-payment_methods-{pmtId}-required_fields-get.md",
"documentation/snippets/v1-payments-get.md",
"documentation/snippets/v1-payments-post.md",
"documentation/snippets/v1-payments-{paymentId}-get.md",
"documentation/snippets/v1-payments-{paymentId}-post.md",
"documentation/snippets/v1-payments-{paymentId}-delete.md",
"documentation/snippets/v1-payments-{paymentId}-capture-post.md",
"documentation/snippets/v1-payments-completePayment-post.md",
"documentation/snippets/v1-checkout-{checkout_token}-get.md",
"documentation/snippets/v1-checkout-post.md",
"documentation/snippets/v1-payments-subscriptions-get.md",
"documentation/snippets/v1-payments-subscriptions-post.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-get.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-post.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-delete.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-discount-delete.md",
"documentation/snippets/v1-checkout-subscriptions-post.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-complete_cycle-post.md",
"documentation/snippets/v1-payments-subscriptions-{subscriptionId}-start_new_cycle-post.md",
"documentation/snippets/v1-subscriptions-discount-{discountId}-get.md",
"documentation/snippets/v1-plans-get.md",
"documentation/snippets/v1-plans-post.md",
"documentation/snippets/v1-plans-{planId}-get.md",
"documentation/snippets/v1-plans-{planId}-post.md",
"documentation/snippets/v1-plans-{planId}-delete.md",
"documentation/snippets/v1-products-get.md",
"documentation/snippets/v1-products-post.md",
"documentation/snippets/v1-products-{productsId}-get.md",
"documentation/snippets/v1-products-{productsId}-post.md",
"documentation/snippets/v1-products-{productsId}-delete.md",
"documentation/snippets/v1-subscription_items-get.md",
"documentation/snippets/v1-subscription_items-post.md",
"documentation/snippets/v1-subscription_items-{subscriptionItemId}-get.md",
"documentation/snippets/v1-subscription_items-{subscriptionItemId}-post.md",
"documentation/snippets/v1-subscription_items-{subscriptionItemId}-delete.md",
"documentation/snippets/v1-subscription_items-{subscriptionItemId}-usage_record_summaries-get.md",
"documentation/snippets/v1-subscription_items-{subscriptionItemId}-usage_records-post.md",
"documentation/snippets/v1-invoices-get.md",
"documentation/snippets/v1-invoices-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-get.md",
"documentation/snippets/v1-invoices-{invoiceId}-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-delete.md",
"documentation/snippets/v1-invoices-{invoiceId}-void-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-finalize-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-pay-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-mark_uncollectible-post.md",
"documentation/snippets/v1-invoices-{invoiceId}-lines-get.md",
"documentation/snippets/v1-invoices-upcoming-get.md",
"documentation/snippets/v1-invoices-upcoming-lines-get.md",
"documentation/snippets/v1-invoice_items-get.md",
"documentation/snippets/v1-invoice_items-post.md",
"documentation/snippets/v1-invoice_items-{invoiceItem}-get.md",
"documentation/snippets/v1-invoice_items-{invoiceItem}-post.md",
"documentation/snippets/v1-invoice_items-{invoiceItem}-delete.md",
"documentation/snippets/v1-hosted-collect-payments-{paymentLink}-get.md",
"documentation/snippets/v1-hosted-collect-payments--post.md",
"documentation/snippets/v1-payments-group_payments-post.md",
"documentation/snippets/v1-payments-group_payments-{groupPaymentId}-get.md",
"documentation/snippets/v1-payments-group_payments-{groupPaymentId}-delete.md",
"documentation/snippets/v1-payments-{payment}-escrows-{escrow}-escrow_releases-get.md",
"documentation/snippets/v1-payments-{payment}-escrows-{escrow}-escrow_releases-post.md",
"documentation/snippets/v1-payments-{payment}-escrows-{escrow}-get.md",
"documentation/snippets/v1-refunds-get.md",
"documentation/snippets/v1-refunds-post.md",
"documentation/snippets/v1-refunds-complete-post.md",
"documentation/snippets/v1-refunds-group_payments-post.md",
"documentation/snippets/v1-refunds-{refundId}-get.md",
"documentation/snippets/v1-refunds-{refundId}-post.md",
"documentation/snippets/v1-digital_wallets-session-apple_pay-post.md",
"documentation/snippets/v1-disputes-get.md",
"documentation/snippets/v1-disputes-{disputeId}-get.md",
"documentation/snippets/v1-customers-get.md",
"documentation/snippets/v1-customers-post.md",
"documentation/snippets/v1-customers-{customerId}-get.md",
"documentation/snippets/v1-customers-{customerId}-post.md",
"documentation/snippets/v1-customers-{customerId}-delete.md",
"documentation/snippets/v1-customers-discount-{discountId}-get.md",
"documentation/snippets/v1-customers-{customerId}-discount-delete.md",
"documentation/snippets/v1-addresses-post.md",
"documentation/snippets/v1-addresses{addressId}-get.md",
"documentation/snippets/v1-addresses{addressId}-post.md",
"documentation/snippets/v1-addresses{addressId}-delete.md",
"documentation/snippets/v1-customers-{customerId}-payment_methods-get.md",
"documentation/snippets/v1-customers-{customerId}-payment_methods-post.md",
"documentation/snippets/v1-customers-{customerId}-payment_methods-{pmtId}-get.md",
"documentation/snippets/v1-customers-{customerId}-payment_methods-{pmtId}-post.md",
"documentation/snippets/v1-customers-{customerId}-payment_methods-{pmtId}-delete.md",
"documentation/snippets/v1-skus-{skuId}-get.md",
"documentation/snippets/v1-skus-{skuId}-post.md",
"documentation/snippets/v1-skus-{skuId}-delete.md",
"documentation/snippets/v1-skus-get.md",
"documentation/snippets/v1-skus-post.md",
"documentation/snippets/v1-orders-get.md",
"documentation/snippets/v1-orders-post.md",
"documentation/snippets/v1-orders-{orderId}-get.md",
"documentation/snippets/v1-orders-{orderId}-post.md",
"documentation/snippets/v1-orders-{orderId}-pay-post.md",
"documentation/snippets/v1-orders-{orderId}-returns-post.md",
"documentation/snippets/v1-order_returns-get.md",
"documentation/snippets/v1-order_returns-{orderReturnsId}-get.md",
"documentation/snippets/v1-coupons-get.md",
"documentation/snippets/v1-coupons-post.md",
"documentation/snippets/v1-coupons-{couponId}-get.md",
"documentation/snippets/v1-coupons-{couponId}-post.md",
"documentation/snippets/v1-coupons-{couponId}-delete.md",
"documentation/snippets/v1-payout_methods-{pomt}-required_fields-get.md",
"documentation/snippets/v1-payouts-get.md",
"documentation/snippets/v1-payouts-post.md",
"documentation/snippets/v1-batch_process-files-mass_payout_pci-post.md",
"documentation/snippets/v1-payouts-beneficiary-post.md",
"documentation/snippets/v1-payouts-extended_beneficiary-post.md",
"documentation/snippets/v1-payouts-beneficiary-validate-post.md",
"documentation/snippets/v1-payouts-beneficiary-{beneficiaryId}-get.md",
"documentation/snippets/v1-payouts-beneficiary-{beneficiaryId}-post.md",
"documentation/snippets/v1-payouts-beneficiary-{beneficiaryId}-delete.md",
"documentation/snippets/v1-payouts-complete-{payoutToken}-{amount}-post.md",
"documentation/snippets/v1-hosted-disburse-beneficiary-post.md",
"documentation/snippets/v1-payouts-confirm-{payoutToken}-post.md",
"documentation/snippets/v1-payouts-sender-post.md",
"documentation/snippets/v1-payouts-sender-{senderId}-get.md",
"documentation/snippets/v1-payouts-sender-{senderId}-delete.md",
"documentation/snippets/v1-payout_methods-get.md",
"documentation/snippets/v1-payouts-{payoutId}-get.md",
"documentation/snippets/v1-payouts-{payoutId}-post.md",
"documentation/snippets/v1-payouts-{payoutId}-delete.md",
"documentation/snippets/v1-payouts-return-{payout}-post.md",
"documentation/snippets/v1-files-documents-payout-{payout}-post.md",
"documentation/snippets/v1-payouts-{payout}-documents--get.md",
"documentation/snippets/v1-payouts-{payout}-documents--delete.md",
"documentation/snippets/v1-payouts-{payout}-documents-{file_id}-get.md",
"documentation/snippets/v1-payouts-{payout}-documents-{file_id}-delete.md",
"documentation/snippets/v1-account-transfer-post.md",
"documentation/snippets/v1-account-transfer-response-post.md",
"documentation/snippets/v1-account-deposit-post.md",
"documentation/snippets/v1-account-deposit-{id}-get.md",
"documentation/snippets/v1-account-withdraw-post.md",
"documentation/snippets/v1-account-withdraw{id}-get.md",
"documentation/snippets/v1-ewallets-accounts-balance-hold-post.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-get.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-post.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-{contactId}-get.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-{contactId}-post.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-{contactId}-delete.md",
"documentation/snippets/v1-ewallets-{ewalletId}-contacts-{contactId}-compliance_levels-get.md",
"documentation/snippets/v1-ewallets-get.md",
"documentation/snippets/v1-ewallets-post.md",
"documentation/snippets/v1-ewallets-{ewalletToken}-get.md",
"documentation/snippets/v1-ewallets-{ewalletToken}-post.md",
"documentation/snippets/v1-ewallets-{ewalletToken}-delete.md",
"documentation/snippets/v1-ewallets-{ewalletToken}-statuses-{status}-post.md",
"documentation/snippets/v1-ewallets-{walletId}-account-limits-post.md",
"documentation/snippets/v1-ewallets-{walletId}-account-limits-delete.md",
"documentation/snippets/v1-ewallets-{walletId}-accounts-get.md",
"documentation/snippets/v1-ewallets-{walletId}-transactions-get.md",
"documentation/snippets/v1-ewallets-{walletId}-transactions-{transactionId}-get.md",
"documentation/snippets/v1-ewallets-{ewallet}-virtual_accounts-get.md",
"documentation/snippets/v1-hosted-issuing-card_details-{cardToken}-post.md",
"documentation/snippets/v1-issuing-cards-get.md",
"documentation/snippets/v1-issuing-cards-post.md",
"documentation/snippets/v1-issuing-cards-{cardId}-get.md",
"documentation/snippets/v1-issuing-cards-activate-post.md",
"documentation/snippets/v1-hosted-issuing-activate_card-post.md",
"documentation/snippets/v1-hosted-issuing-pin-post.md",
"documentation/snippets/v1-issuing-cards-personalize-post.md",
"documentation/snippets/v1-issuing-cards-status-post.md",
"documentation/snippets/v1-issuing-cards-{cardId}-transactions-get.md",
"documentation/snippets/v1-issuing-cards-{cardId}-transactions-{transactionId}-get.md",
"documentation/snippets/v1-issuing-cards-pin-post.md",
"documentation/snippets/v1-issuing-cards-{card_id}-card_tokens-google_pay-post.md",
"documentation/snippets/v1-issuing-bankaccounts-post.md",
"documentation/snippets/v1-issuing-bankaccounts-bankaccounttransfertobankaccount-post.md",
"documentation/snippets/v1-issuing-bankaccounts-remitters-{virtualAccountId}-transactions-{transaction_id}-get.md",
"documentation/snippets/v1-issuing-bankaccounts-{virtualAccountId}-get.md",
"documentation/snippets/v1-issuing-bankaccounts-{virtualAccountId}-post.md",
"documentation/snippets/v1-issuing-bankaccounts-{virtualAccountId}-transactions-{transactionId}-get.md",
"documentation/snippets/v1-hosted-collect-card--post.md",
"documentation/snippets/v1-issuing-cards-simulate_block-post.md",
"documentation/snippets/v1-issuing-cards-authorization-post.md",
"documentation/snippets/v1-issuing-cards-reversal-post.md",
"documentation/snippets/v1-issuing-cards-clearing-post.md",
"documentation/snippets/v1-issuing-cards-refund-post.md",
"documentation/snippets/v1-issuing-cards-adjustment-post.md",
"documentation/snippets/v1-virtual_accounts-post.md",
"documentation/snippets/v1-virtual_accounts-transactions-post.md",
"documentation/snippets/v1-virtual_accounts-{virtualAccountId}-get.md",
"documentation/snippets/v1-virtual_accounts-{virtualAccountId}-post.md",
"documentation/snippets/v1-virtual_accounts-{virtualAccountId}-delete.md",
"documentation/snippets/v1-virtual_accounts-capabilities-{country}-get.md",
"documentation/snippets/v1-fx_rate-get.md",
"documentation/snippets/v1-fx_rates--get.md",
"documentation/snippets/v1-hosted-config-supported_languages-get.md",
"documentation/snippets/v1-data-countries-get.md",
"documentation/snippets/v1-data-currencies-get.md",
"documentation/snippets/v1-webhooks-{webhook}-get.md",
"documentation/snippets/v1-webhooks-{webhook}-post.md",
"documentation/snippets/v1-webhooks-get.md",
"documentation/snippets/v1-identities-post.md",
"documentation/snippets/v1-identities-types-get.md",
"documentation/snippets/v1-verify-applications-types-country-{country}-get.md",
"documentation/snippets/v1-verify-applications-status-{application}-get.md",
"documentation/snippets/v1-verify-applications-hosted-post.md",
"documentation/snippets/v1-verify-applications-hosted-{verifyAppId}-get.md",
"documentation/snippets/v1-hosted-idv-post.md",
"documentation/snippets/v1-cnl-termination_query-post.md",
"documentation/snippets/v1-cnl-termination_query-{partner_query_reference}-get.md",
"documentation/models/InlineResponse200.md",
"documentation/models/InlineResponse200_1.md",
"documentation/models/InlineResponse200_2.md",
"documentation/models/Customer.md",
"documentation/models/InlineResponse200_3.md",
"documentation/models/PaymentsPaymentIdBody.md",
"documentation/models/PaymentIdCaptureBody.md",
"documentation/models/PaymentsCompletePaymentBody.md",
"documentation/models/InlineResponse200_4.md",
"documentation/models/V1CheckoutBody.md",
"documentation/models/InlineResponse200_5.md",
"documentation/models/InlineResponse200_6.md",
"documentation/models/InlineResponse200_7.md",
"documentation/models/InlineResponse200_8.md",
"documentation/models/InlineResponse200_9.md",
"documentation/models/InlineResponse200_20.md",
"documentation/models/InlineResponse200_10.md",
"documentation/models/V1PlansBody.md",
"documentation/models/InlineResponse200_11.md",
"documentation/models/PlansPlanIdBody.md",
"documentation/models/InlineResponse200_12.md",
"documentation/models/InlineResponse200_13.md",
"documentation/models/InlineResponse200_14.md",
"documentation/models/ProductsProductsIdBody.md",
"documentation/models/InlineResponse200_15.md",
"documentation/models/V1SubscriptionItemsBody.md",
"documentation/models/InlineResponse200_16.md",
"documentation/models/SubscriptionItemsSubscriptionItemIdBody.md",
"documentation/models/InlineResponse200_17.md",
"documentation/models/InlineResponse200_18.md",
"documentation/models/SubscriptionItemIdUsageRecordsBody.md",
"documentation/models/InlineResponse200_19.md",
"documentation/models/InlineResponse200_21.md",
"documentation/models/V1InvoicesBody.md",
"documentation/models/InlineResponse200_22.md",
"documentation/models/InvoicesInvoiceIdBody.md",
"documentation/models/InlineResponse200_23.md",
"documentation/models/InvoiceIdPayBody.md",
"documentation/models/InlineResponse200_24.md",
"documentation/models/V1InvoiceItemsBody.md",
"documentation/models/InvoiceItemsInvoiceItemBody.md",
"documentation/models/InlineResponse200_25.md",
"documentation/models/InlineResponse200_26.md",
"documentation/models/CollectPaymentsBody.md",
"documentation/models/PaymentsGroupPaymentsBody.md",
"documentation/models/InlineResponse200_27.md",
"documentation/models/InlineResponse200_28.md",
"documentation/models/EscrowEscrowReleasesBody.md",
"documentation/models/InlineResponse200_29.md",
"documentation/models/InlineResponse200_30.md",
"documentation/models/V1RefundsBody.md",
"documentation/models/InlineResponse200_31.md",
"documentation/models/RefundsCompleteBody.md",
"documentation/models/RefundsGroupPaymentsBody.md",
"documentation/models/InlineResponse200_32.md",
"documentation/models/RefundsRefundIdBody.md",
"documentation/models/ApplePayObject.md",
"documentation/models/InlineResponse200_33.md",
"documentation/models/InlineResponse200_34.md",
"documentation/models/GetDisputesListByOrgIdStatus.md",
"documentation/models/InlineResponse200_35.md",
"documentation/models/InlineResponse200_36.md",
"documentation/models/V1CustomersBody.md",
"documentation/models/InlineResponse200_37.md",
"documentation/models/CustomerRequest.md",
"documentation/models/InlineResponse200_38.md",
"documentation/models/InlineResponse200_39.md",
"documentation/models/V1AddressesBody.md",
"documentation/models/InlineResponse200_40.md",
"documentation/models/InlineResponse200_41.md",
"documentation/models/Category.md",
"documentation/models/CustomerIdPaymentMethodsBody.md",
"documentation/models/InlineResponse200_42.md",
"documentation/models/InlineResponse200_43.md",
"documentation/models/InlineResponse200_44.md",
"documentation/models/SkusSkuIdBody.md",
"documentation/models/InlineResponse200_45.md",
"documentation/models/V1SkusBody.md",
"documentation/models/InlineResponse200_46.md",
"documentation/models/V1OrdersBody.md",
"documentation/models/InlineResponse200_47.md",
"documentation/models/OrderIdPayBody.md",
"documentation/models/OrderIdReturnsBody.md",
"documentation/models/InlineResponse200_48.md",
"documentation/models/InlineResponse200_49.md",
"documentation/models/InlineResponse200_50.md",
"documentation/models/InlineResponse200_51.md",
"documentation/models/InlineResponse200_52.md",
"documentation/models/InlineResponse200_53.md",
"documentation/models/InlineResponse200_54.md",
"documentation/models/InlineResponse200_55.md",
"documentation/models/InlineResponse200_56.md",
"documentation/models/PayoutsBeneficiaryBody.md",
"documentation/models/InlineResponse200_57.md",
"documentation/models/InlineResponse200_58.md",
"documentation/models/InlineResponse200_59.md",
"documentation/models/InlineResponse200_60.md",
"documentation/models/PayoutsSenderBody.md",
"documentation/models/InlineResponse200_61.md",
"documentation/models/InlineResponse200_62.md",
"documentation/models/InlineResponse200_63.md",
"documentation/models/PayoutsPayoutIdBody.md",
"documentation/models/InlineResponse200_64.md",
"documentation/models/InlineResponse200_65.md",
"documentation/models/InlineResponse200_66.md",
"documentation/models/AccountTransferBody.md",
"documentation/models/InlineResponse200_67.md",
"documentation/models/TransferResponseBody.md",
"documentation/models/AccountDepositBody.md",
"documentation/models/InlineResponse200_68.md",
"documentation/models/AccountWithdrawBody.md",
"documentation/models/BalanceHoldBody.md",
"documentation/models/InlineResponse200_69.md",
"documentation/models/InlineResponse200_70.md",
"documentation/models/EwalletIdContactsBody.md",
"documentation/models/InlineResponse200_71.md",
"documentation/models/InlineResponse200_72.md",
"documentation/models/InlineResponse200_73.md",
"documentation/models/InlineResponse200_97.md",
"documentation/models/V1EwalletsBody.md",
"documentation/models/InlineResponse200_98.md",
"documentation/models/EwalletsEwalletTokenBody.md",
"documentation/models/UpdateEwalletStatusStatus.md",
"documentation/models/AccountLimitsBody.md",
"documentation/models/InlineResponse200_99.md",
"documentation/models/InlineResponse200_100.md",
"documentation/models/InlineResponse200_101.md",
"documentation/models/InlineResponse200_102.md",
"documentation/models/InlineResponse200_103.md",
"documentation/models/CardDetailsCardTokenBody.md",
"documentation/models/IssuingCardsBody.md",
"documentation/models/CardsActivateBody.md",
"documentation/models/InlineResponse200_78.md",
"documentation/models/IssuingActivateCardBody.md",
"documentation/models/InlineResponse200_79.md",
"documentation/models/IssuingPinBody.md",
"documentation/models/InlineResponse200_80.md",
"documentation/models/CardsPersonalizeBody.md",
"documentation/models/CardsStatusBody.md",
"documentation/models/InlineResponse200_81.md",
"documentation/models/InlineResponse200_82.md",
"documentation/models/CardsPinBody.md",
"documentation/models/InlineResponse200_83.md",
"documentation/models/CardTokensGooglePayBody.md",
"documentation/models/InlineResponse200_84.md",
"documentation/models/IssuingBankaccountsBody.md",
"documentation/models/InlineResponse200_107.md",
"documentation/models/BankaccountsBankaccounttransfertobankaccountBody.md",
"documentation/models/InlineResponse200_108.md",
"documentation/models/InlineResponse200_109.md",
"documentation/models/BankaccountsVirtualAccountIdBody.md",
"documentation/models/InlineResponse200_93.md",
"documentation/models/InlineResponse200_110.md",
"documentation/models/CollectCardBody.md",
"documentation/models/InlineResponse200_85.md",
"documentation/models/CardsSimulateBlockBody.md",
"documentation/models/InlineResponse200_86.md",
"documentation/models/InlineResponse200_87.md",
"documentation/models/CardsReversalBody.md",
"documentation/models/InlineResponse200_88.md",
"documentation/models/CardsClearingBody.md",
"documentation/models/InlineResponse200_89.md",
"documentation/models/CardsRefundBody.md",
"documentation/models/CardsAdjustmentBody.md",
"documentation/models/V1VirtualAccountsBody.md",
"documentation/models/InlineResponse200_90.md",
"documentation/models/VirtualAccountsTransactionsBody.md",
"documentation/models/InlineResponse200_91.md",
"documentation/models/InlineResponse200_92.md",
"documentation/models/VirtualAccountsVirtualAccountIdBody.md",
"documentation/models/InlineResponse200_94.md",
"documentation/models/InlineResponse200_95.md",
"documentation/models/InlineResponse200_96.md",
"documentation/models/InlineResponse200_104.md",
"documentation/models/InlineResponse200_120.md",
"documentation/models/InlineResponse200_121.md",
"documentation/models/InlineResponse200_122.md",
"documentation/models/InlineResponse200_105.md",
"documentation/models/InlineResponse200_106.md",
"documentation/models/V1IdentitiesBody.md",
"documentation/models/InlineResponse200_111.md",
"documentation/models/InlineResponse200_112.md",
"documentation/models/InlineResponse200_113.md",
"documentation/models/InlineResponse200_114.md",
"documentation/models/ApplicationsHostedBody.md",
"documentation/models/InlineResponse200_115.md",
"documentation/models/InlineResponse200_116.md",
"documentation/models/InlineResponse200_117.md",
"documentation/models/CnlTerminationQueryBody.md",
"documentation/models/InlineResponse200_118.md",
"documentation/models/InlineResponse200_119.md",
"documentation/models/Status1.md",
"documentation/models/PaymentAmountRangePerCurrencyInner.md",
"documentation/models/PaymentMethodTypeRequiredFields.md",
"documentation/models/Address1.md",
"documentation/models/PaymentEwallets.md",
"documentation/models/PaymentInstructions.md",
"documentation/models/NextAction.md",
"documentation/models/Fee.md",
"documentation/models/PaymentRefunds.md",
"documentation/models/PaymentStatus.md",
"documentation/models/PaymentSteps.md",
"documentation/models/BinDetails.md",
"documentation/models/Discount.md",
"documentation/models/CustomerPaymentMethods.md",
"documentation/models/SubscriptionItems.md",
"documentation/models/SubscriptionItem.md",
"documentation/models/PlanTransformUsage.md",
"documentation/models/ProductPackageDimensions.md",
"documentation/models/Sku.md",
"documentation/models/SkuPackageDimensions.md",
"documentation/models/FxFee.md",
"documentation/models/TransactionFee.md",
"documentation/models/CheckoutPageResponse.md",
"documentation/models/MerchantCustomerSupport.md",
"documentation/models/HostedPageStatus.md",
"documentation/models/HostedPageAdditionalResponseCartItems.md",
"documentation/models/HostedPageAdditionalResponseCustomElements.md",
"documentation/models/V1paymentssubscriptionsSubscriptionItems.md",
"documentation/models/InlineResponse200_7Data.md",
"documentation/models/SubscriptionHostedPageReponseCustomElements.md",
"documentation/models/SubscriptionHostedPageReponseMerchantCustomerSupport.md",
"documentation/models/InlineResponse200_12Data.md",
"documentation/models/V1productsPackageDimensions.md",
"documentation/models/InlineResponse200_17Data.md",
"documentation/models/InlineResponse200_18Data.md",
"documentation/models/InvoiceItemResponse.md",
"documentation/models/InvoiceItemResponsePeriod.md",
"documentation/models/Beneficiary.md",
"documentation/models/PayoutEwallets.md",
"documentation/models/PayoutInstructions.md",
"documentation/models/PayoutFees.md",
"documentation/models/Sender.md",
"documentation/models/PayoutStatus.md",
"documentation/models/EntityType.md",
"documentation/models/InlineResponse200_23Data.md",
"documentation/models/InlineResponse200_25Data.md",
"documentation/models/PaymentLink.md",
"documentation/models/GroupPayment.md",
"documentation/models/EscrowResponse.md",
"documentation/models/EscrowResponseEscrowReleases.md",
"documentation/models/EscrowResponseEscrowReleasesData.md",
"documentation/models/EscrowEwallets.md",
"documentation/models/Refund.md",
"documentation/models/RefundEwallets.md",
"documentation/models/InlineResponse200_32Data.md",
"documentation/models/ApplePayObjectResponse.md",
"documentation/models/CustomerRequestPaymentMethod.md",
"documentation/models/DiscountCustomerResponse.md",
"documentation/models/AddressResponse.md",
"documentation/models/InlineResponse200_43Data.md",
"documentation/models/V1skusskuIdPackageDimensions.md",
"documentation/models/OrderResponse.md",
"documentation/models/OrderItemResponse.md",
"documentation/models/OrderReturnedItemResponse.md",
"documentation/models/OrderResponseStatusTransitions.md",
"documentation/models/OrderReturnedResponse.md",
"documentation/models/InlineResponse200_52Data.md",
"documentation/models/PayoutMethodTypeDetails.md",
"documentation/models/Status.md",
"documentation/models/MassPayoutResponse.md",
"documentation/models/Gender.md",
"documentation/models/InlineResponse200_58Data.md",
"documentation/models/InlineResponse200_59Data.md",
"documentation/models/V1hosteddisbursebeneficiaryBeneficiaryOptionalFields.md",
"documentation/models/HostedBeneficiaryTokenResponseBeneficiaryOptionalFields.md",
"documentation/models/HostedBeneficiaryTokenResponseMerchantCustomerSupport.md",
"documentation/models/InlineResponse200_62Data.md",
"documentation/models/PayoutMethodType.md",
"documentation/models/PayoutAmountRangePerCurrencyInner.md",
"documentation/models/PayoutReturnedStatus.md",
"documentation/models/InlineResponse200_65Data.md",
"documentation/models/InlineResponse200_68Data.md",
"documentation/models/InlineResponse200_72Data.md",
"documentation/models/InlineResponse200_73Data.md",
"documentation/models/InlineResponse200_73DataComplianceLevels.md",
"documentation/models/InlineResponse200_73DataElements.md",
"documentation/models/Account.md",
"documentation/models/EwalletContacts.md",
"documentation/models/Limit.md",
"documentation/models/V1ewalletsContact.md",
"documentation/models/InlineResponse200_103Data.md",
"documentation/models/PaymentParams.md",
"documentation/models/CardIssuing.md",
"documentation/models/CardIssuingMasked.md",
"documentation/models/HostedPageActivateCardResponse.md",
"documentation/models/HostedPageCardPinResponse.md",
"documentation/models/AddCardtoGooglePayResponse.md",
"documentation/models/AddCardtoGooglePayResponseUserAddress.md",
"documentation/models/InlineResponse200_107Data.md",
"documentation/models/InlineResponse200_108Data.md",
"documentation/models/InlineResponse200_93DataTransactions.md",
"documentation/models/InlineResponse200_109Data.md",
"documentation/models/InlineResponse200_93Data.md",
"documentation/models/InlineResponse200_110Data.md",
"documentation/models/V1hostedcollectcardCardFields.md",
"documentation/models/CardTokenResponse.md",
"documentation/models/CardTokenResponseCardFields.md",
"documentation/models/CardTokenResponsePaymentParams.md",
"documentation/models/SimulateCardTransactionAuthorizationRequestEeaAuthResponse.md",
"documentation/models/SimulateClearingCardTransactionEeaRemoteAuthResponse.md",
"documentation/models/InlineResponse200_90Data.md",
"documentation/models/InlineResponse200_91Data.md",
"documentation/models/InlineResponse200_91DataTransactions.md",
"documentation/models/VirtualAccountTransactionResponse.md",
"documentation/models/InlineResponse200_94Data.md",
"documentation/models/DailyRate.md",
"documentation/models/ListSupportedLanguagesResponse.md",
"documentation/models/ListSupportedLanguagesResponseLanguages.md",
"documentation/models/ListCountriesResponse.md",
"documentation/models/ListCountriesResponseLanguages.md",
"documentation/models/ListCurrenciesResponse.md",
"documentation/models/ResendWebhookResponse.md",
"documentation/models/ListWebhooksResponseAttempts.md",
"documentation/models/ListWebhooksResponseAttemptsHttpResponseHeaders.md",
"documentation/models/ListWebhooksResponse.md",
"documentation/models/InlineResponse200_111Data.md",
"documentation/models/InlineResponse200_112Data.md",
"documentation/models/InlineResponse200_113Data.md",
"documentation/models/EntityTypeVerify.md",
"documentation/models/VerifyHostedAppResponse.md",
"documentation/models/VerifyHostedAppResponseMerchantDetails.md",
"documentation/models/VerifyHostedAppResponseMerchantDetailsMerchantCustomerSupport.md",
"documentation/models/InlineResponse200_116DataApplicationType.md",
"documentation/models/InlineResponse200_116DataOrganizationDetails.md",
"documentation/models/InlineResponse200_116DataRenewResult.md",
"documentation/models/InlineResponse200_116DataOrganizationDetailsMerchantCustomerSupport.md",
"documentation/models/InlineResponse200_117DataMerchantCustomerSupport.md",
"documentation/models/V1cnlterminationQueryQueriedMerchantAddress.md",
"documentation/models/V1cnlterminationQueryQueriedMerchantPrincipals.md",
"documentation/models/V1cnlterminationQueryQueriedMerchantPrincipalsAddress.md",
"documentation/models/InlineResponse200_119DataMatchStats.md",
"documentation/models/InlineResponse200_119DataQueryInfo.md",
"documentation/models/InlineResponse200_119DataPrincipals.md",
"documentation/models/InlineResponse200_119DataRegistrationInfo.md",
"src/rapyd_sdk/models/utils/one_of_base_model.py",
"src/rapyd_sdk/services/digital_wallet.py",
"src/rapyd_sdk/services/payment_card_token.py",
"src/rapyd_sdk/services/fx.py",
"documentation/models/PaymentsSubscriptionsBody.md",
"documentation/models/SubscriptionsSubscriptionIdBody.md",
"documentation/models/CheckoutSubscriptionsBody.md",
"documentation/models/V1ProductsBody.md",
"documentation/models/OrdersOrderIdBody.md",
"documentation/models/Coupon.md",
"documentation/models/PayoutsExtendedBeneficiaryBody.md",
"documentation/models/BeneficiaryValidateBody.md",
"documentation/models/InlineResponse200_75.md",
"documentation/models/InlineResponse200_76.md",
"documentation/models/InlineResponse200_77.md",
"documentation/models/CardsAuthorizationBody.md",
"documentation/models/HostedIdvBody.md",
"documentation/models/PaymentMethodType.md",
"documentation/models/Field1.md",
"documentation/models/Field1Conditions.md",
"documentation/models/Payment.md",
"documentation/models/Dispute.md",
"documentation/models/PaymentOptions.md",
"documentation/models/Condition.md",
"documentation/models/PlanTiers.md",
"documentation/models/Product.md",
"documentation/models/ClientDetailsObject.md",
"documentation/models/Payout.md",
"documentation/models/V1ordersItems.md",
"documentation/models/V1ordersorderIdreturnsItems.md",
"documentation/models/PayoutRequiredFields.md",
"documentation/models/PayoutReturned.md",
"documentation/models/Transfer.md",
"documentation/models/ContactBusiness.md",
"documentation/models/EwalletTransactionDetails.md",
"documentation/models/CardTransaction.md",
"documentation/models/SimulateCardTransactionAuthorizationReversalEea.md",
"documentation/models/SimulateClearingCardTransactionEea.md",
"documentation/models/VirtualAccountIssuing.md",
"documentation/models/InlineResponse200_114Data.md",
"documentation/models/InlineResponse200_116Data.md",
"documentation/models/V1cnlterminationQuerySearchCriteria.md",
"documentation/models/V1cnlterminationQueryQueriedMerchant.md",
"documentation/models/InlineResponse200_118Data.md",
"documentation/models/InlineResponse200_119Data.md",
"documentation/models/InlineResponse200_119DataMatches.md",
"documentation/models/InlineResponse200_119DataMatchedMerchant.md",
"documentation/models/InlineResponse200_119DataQueryInfoQueriedMerchant.md",
"src/rapyd_sdk/models/get_disputes_list_by_org_id_status.py",
"src/rapyd_sdk/models/category.py",
"src/rapyd_sdk/models/update_ewallet_status_status.py",
"src/rapyd_sdk/models/next_action.py",
"src/rapyd_sdk/models/payment_status.py",
"src/rapyd_sdk/models/hosted_page_status.py",
"src/rapyd_sdk/models/payout_status.py",
"src/rapyd_sdk/models/entity_type.py",
"src/rapyd_sdk/models/gender.py",
"src/rapyd_sdk/models/payout_returned_status.py",
"src/rapyd_sdk/models/entity_type_verify.py",
"documentation/services/DigitalWalletService.md",
"documentation/services/PaymentCardTokenService.md",
"documentation/services/FxService.md",
"documentation/models/V1PaymentsBody.md",
"documentation/models/BeneficiaryBeneficiaryIdBody.md",
"documentation/models/InlineResponse200_74.md",
"documentation/models/SubscriptionHostedPageReponse.md",
"documentation/models/V1skusskuIdInventory.md",
"documentation/models/PutFundsOnHoldResponse.md",
"documentation/models/InlineResponse200_103DataBankAccounts.md",
"documentation/models/SetPinResponse.md",
"documentation/models/SimulateBlockCardResponse.md",
"documentation/models/SimulateCardTransactionAuthorizationRequestEea.md",
"documentation/models/InlineResponse200_117Data.md",
"src/rapyd_sdk/models/inline_response_200.py",
"src/rapyd_sdk/models/inline_response_200_1.py",
"src/rapyd_sdk/models/inline_response_200_2.py",
"src/rapyd_sdk/models/customer.py",
"src/rapyd_sdk/models/inline_response_200_3.py",
"src/rapyd_sdk/models/payments_payment_id_body.py",
"src/rapyd_sdk/models/payment_id_capture_body.py",
"src/rapyd_sdk/models/payments_complete_payment_body.py",
"src/rapyd_sdk/models/inline_response_200_4.py",
"src/rapyd_sdk/models/v1_checkout_body.py",
"src/rapyd_sdk/models/inline_response_200_5.py",
"src/rapyd_sdk/models/inline_response_200_6.py",
"src/rapyd_sdk/models/inline_response_200_7.py",
"src/rapyd_sdk/models/inline_response_200_8.py",
"src/rapyd_sdk/models/inline_response_200_9.py",
"src/rapyd_sdk/models/inline_response_200_20.py",
"src/rapyd_sdk/models/inline_response_200_10.py",
"src/rapyd_sdk/models/v1_plans_body.py",
"src/rapyd_sdk/models/inline_response_200_11.py",
"src/rapyd_sdk/models/plans_plan_id_body.py",
"src/rapyd_sdk/models/inline_response_200_12.py",
"src/rapyd_sdk/models/inline_response_200_13.py",
"src/rapyd_sdk/models/inline_response_200_14.py",
"src/rapyd_sdk/models/products_products_id_body.py",
"src/rapyd_sdk/models/inline_response_200_15.py",
"src/rapyd_sdk/models/v1_subscription_items_body.py",
"src/rapyd_sdk/models/inline_response_200_16.py",
"src/rapyd_sdk/models/subscription_items_subscription_item_id_body.py",
"src/rapyd_sdk/models/inline_response_200_17.py",
"src/rapyd_sdk/models/inline_response_200_18.py",
"src/rapyd_sdk/models/subscription_item_id_usage_records_body.py",
"src/rapyd_sdk/models/inline_response_200_19.py",
"src/rapyd_sdk/models/inline_response_200_21.py",
"src/rapyd_sdk/models/v1_invoices_body.py",
"src/rapyd_sdk/models/inline_response_200_22.py",
"src/rapyd_sdk/models/invoices_invoice_id_body.py",
"src/rapyd_sdk/models/inline_response_200_23.py",
"src/rapyd_sdk/models/invoice_id_pay_body.py",
"src/rapyd_sdk/models/inline_response_200_24.py",
"src/rapyd_sdk/models/v1_invoice_items_body.py",
"src/rapyd_sdk/models/invoice_items_invoice_item_body.py",
"src/rapyd_sdk/models/inline_response_200_25.py",
"src/rapyd_sdk/models/inline_response_200_26.py",
"src/rapyd_sdk/models/collect_payments_body.py",
"src/rapyd_sdk/models/payments_group_payments_body.py",
"src/rapyd_sdk/models/inline_response_200_27.py",
"src/rapyd_sdk/models/inline_response_200_28.py",
"src/rapyd_sdk/models/escrow_escrow_releases_body.py",
"src/rapyd_sdk/models/inline_response_200_29.py",
"src/rapyd_sdk/models/inline_response_200_30.py",
"src/rapyd_sdk/models/v1_refunds_body.py",
"src/rapyd_sdk/models/inline_response_200_31.py",
"src/rapyd_sdk/models/refunds_complete_body.py",
"src/rapyd_sdk/models/refunds_group_payments_body.py",
"src/rapyd_sdk/models/inline_response_200_32.py",
"src/rapyd_sdk/models/refunds_refund_id_body.py",
"src/rapyd_sdk/models/apple_pay_object.py",
"src/rapyd_sdk/models/inline_response_200_33.py",
"src/rapyd_sdk/models/inline_response_200_34.py",
"src/rapyd_sdk/models/inline_response_200_35.py",
"src/rapyd_sdk/models/inline_response_200_36.py",
"src/rapyd_sdk/models/v1_customers_body.py",
"src/rapyd_sdk/models/inline_response_200_37.py",
"src/rapyd_sdk/models/customer_request.py",
"src/rapyd_sdk/models/inline_response_200_38.py",
"src/rapyd_sdk/models/inline_response_200_39.py",
"src/rapyd_sdk/models/v1_addresses_body.py",
"src/rapyd_sdk/models/inline_response_200_40.py",
"src/rapyd_sdk/models/inline_response_200_41.py",
"src/rapyd_sdk/models/customer_id_payment_methods_body.py",
"src/rapyd_sdk/models/inline_response_200_42.py",
"src/rapyd_sdk/models/inline_response_200_43.py",
"src/rapyd_sdk/models/inline_response_200_44.py",
"src/rapyd_sdk/models/skus_sku_id_body.py",
"src/rapyd_sdk/models/inline_response_200_45.py",
"src/rapyd_sdk/models/v1_skus_body.py",
"src/rapyd_sdk/models/inline_response_200_46.py",
"src/rapyd_sdk/models/v1_orders_body.py",
"src/rapyd_sdk/models/inline_response_200_47.py",
"src/rapyd_sdk/models/order_id_pay_body.py",
"src/rapyd_sdk/models/order_id_returns_body.py",
"src/rapyd_sdk/models/inline_response_200_48.py",
"src/rapyd_sdk/models/inline_response_200_49.py",
"src/rapyd_sdk/models/inline_response_200_50.py",
"src/rapyd_sdk/models/inline_response_200_51.py",
"src/rapyd_sdk/models/inline_response_200_52.py",
"src/rapyd_sdk/models/inline_response_200_53.py",
"src/rapyd_sdk/models/inline_response_200_54.py",
"src/rapyd_sdk/models/inline_response_200_55.py",
"src/rapyd_sdk/models/inline_response_200_56.py",
"src/rapyd_sdk/models/payouts_beneficiary_body.py",
"src/rapyd_sdk/models/inline_response_200_57.py",
"src/rapyd_sdk/models/inline_response_200_58.py",
"src/rapyd_sdk/models/inline_response_200_59.py",
"src/rapyd_sdk/models/inline_response_200_60.py",
"src/rapyd_sdk/models/payouts_sender_body.py",
"src/rapyd_sdk/models/inline_response_200_61.py",
"src/rapyd_sdk/models/inline_response_200_62.py",
"src/rapyd_sdk/models/inline_response_200_63.py",
"src/rapyd_sdk/models/payouts_payout_id_body.py",
"src/rapyd_sdk/models/inline_response_200_64.py",
"src/rapyd_sdk/models/inline_response_200_65.py",
"src/rapyd_sdk/models/inline_response_200_66.py",
"src/rapyd_sdk/models/account_transfer_body.py",
"src/rapyd_sdk/models/inline_response_200_67.py",
"src/rapyd_sdk/models/transfer_response_body.py",
"src/rapyd_sdk/models/account_deposit_body.py",
"src/rapyd_sdk/models/inline_response_200_68.py",
"src/rapyd_sdk/models/account_withdraw_body.py",
"src/rapyd_sdk/models/balance_hold_body.py",
"src/rapyd_sdk/models/inline_response_200_69.py",
"src/rapyd_sdk/models/inline_response_200_70.py",
"src/rapyd_sdk/models/ewallet_id_contacts_body.py",
"src/rapyd_sdk/models/inline_response_200_71.py",
"src/rapyd_sdk/models/inline_response_200_72.py",
"src/rapyd_sdk/models/inline_response_200_73.py",
"src/rapyd_sdk/models/inline_response_200_97.py",
"src/rapyd_sdk/models/v1_ewallets_body.py",
"src/rapyd_sdk/models/inline_response_200_98.py",
"src/rapyd_sdk/models/ewallets_ewallet_token_body.py",
"src/rapyd_sdk/models/account_limits_body.py",
"src/rapyd_sdk/models/inline_response_200_99.py",
"src/rapyd_sdk/models/inline_response_200_100.py",
"src/rapyd_sdk/models/inline_response_200_101.py",
"src/rapyd_sdk/models/inline_response_200_102.py",
"src/rapyd_sdk/models/inline_response_200_103.py",
"src/rapyd_sdk/models/card_details_card_token_body.py",
"src/rapyd_sdk/models/issuing_cards_body.py",
"src/rapyd_sdk/models/cards_activate_body.py",
"src/rapyd_sdk/models/inline_response_200_78.py",
"src/rapyd_sdk/models/issuing_activate_card_body.py",
"src/rapyd_sdk/models/inline_response_200_79.py",
"src/rapyd_sdk/models/issuing_pin_body.py",
"src/rapyd_sdk/models/inline_response_200_80.py",
"src/rapyd_sdk/models/cards_personalize_body.py",
"src/rapyd_sdk/models/cards_status_body.py",
"src/rapyd_sdk/models/inline_response_200_81.py",
"src/rapyd_sdk/models/inline_response_200_82.py",
"src/rapyd_sdk/models/cards_pin_body.py",
"src/rapyd_sdk/models/inline_response_200_83.py",
"src/rapyd_sdk/models/card_tokens_google_pay_body.py",
"src/rapyd_sdk/models/inline_response_200_84.py",
"src/rapyd_sdk/models/issuing_bankaccounts_body.py",
"src/rapyd_sdk/models/inline_response_200_107.py",
"src/rapyd_sdk/models/bankaccounts_bankaccounttransfertobankaccount_body.py",
"src/rapyd_sdk/models/inline_response_200_108.py",
"src/rapyd_sdk/models/inline_response_200_109.py",
"src/rapyd_sdk/models/bankaccounts_virtual_account_id_body.py",
"src/rapyd_sdk/models/inline_response_200_93.py",
"src/rapyd_sdk/models/inline_response_200_110.py",
"src/rapyd_sdk/models/collect_card_body.py",
"src/rapyd_sdk/models/inline_response_200_85.py",
"src/rapyd_sdk/models/cards_simulate_block_body.py",
"src/rapyd_sdk/models/inline_response_200_86.py",
"src/rapyd_sdk/models/inline_response_200_87.py",
"src/rapyd_sdk/models/cards_reversal_body.py",
"src/rapyd_sdk/models/inline_response_200_88.py",
"src/rapyd_sdk/models/cards_clearing_body.py",
"src/rapyd_sdk/models/inline_response_200_89.py",
"src/rapyd_sdk/models/cards_refund_body.py",
"src/rapyd_sdk/models/cards_adjustment_body.py",
"src/rapyd_sdk/models/v1_virtual_accounts_body.py",
"src/rapyd_sdk/models/inline_response_200_90.py",
"src/rapyd_sdk/models/virtual_accounts_transactions_body.py",
"src/rapyd_sdk/models/inline_response_200_91.py",
"src/rapyd_sdk/models/inline_response_200_92.py",
"src/rapyd_sdk/models/virtual_accounts_virtual_account_id_body.py",
"src/rapyd_sdk/models/inline_response_200_94.py",
"src/rapyd_sdk/models/inline_response_200_95.py",
"src/rapyd_sdk/models/inline_response_200_96.py",
"src/rapyd_sdk/models/inline_response_200_104.py",
"src/rapyd_sdk/models/inline_response_200_120.py",
"src/rapyd_sdk/models/inline_response_200_121.py",
"src/rapyd_sdk/models/inline_response_200_122.py",
"src/rapyd_sdk/models/inline_response_200_105.py",
"src/rapyd_sdk/models/inline_response_200_106.py",
"src/rapyd_sdk/models/v1_identities_body.py",
"src/rapyd_sdk/models/inline_response_200_111.py",
"src/rapyd_sdk/models/inline_response_200_112.py",
"src/rapyd_sdk/models/inline_response_200_113.py",
"src/rapyd_sdk/models/inline_response_200_114.py",
"src/rapyd_sdk/models/applications_hosted_body.py",
"src/rapyd_sdk/models/inline_response_200_115.py",
"src/rapyd_sdk/models/inline_response_200_116.py",
"src/rapyd_sdk/models/inline_response_200_117.py",
"src/rapyd_sdk/models/cnl_termination_query_body.py",
"src/rapyd_sdk/models/inline_response_200_118.py",
"src/rapyd_sdk/models/inline_response_200_119.py",