moovio_sdk 0.3.16__py3-none-any.whl → 0.3.18__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. moovio_sdk/_version.py +3 -3
  2. moovio_sdk/accounts.py +18 -18
  3. moovio_sdk/adjustments.py +4 -4
  4. moovio_sdk/apple_pay.py +10 -10
  5. moovio_sdk/authentication.py +4 -4
  6. moovio_sdk/avatars.py +2 -2
  7. moovio_sdk/bank_accounts.py +18 -18
  8. moovio_sdk/branding.py +8 -8
  9. moovio_sdk/capabilities.py +8 -8
  10. moovio_sdk/card_issuing.py +10 -10
  11. moovio_sdk/cards.py +10 -10
  12. moovio_sdk/disputes.py +22 -22
  13. moovio_sdk/end_to_end_encryption.py +4 -4
  14. moovio_sdk/enriched_address.py +2 -2
  15. moovio_sdk/enriched_profile.py +2 -2
  16. moovio_sdk/fee_plans.py +14 -14
  17. moovio_sdk/files.py +6 -6
  18. moovio_sdk/industries.py +2 -2
  19. moovio_sdk/institutions.py +2 -2
  20. moovio_sdk/issuing_transactions.py +10 -10
  21. moovio_sdk/models/components/accountnameverification.py +18 -9
  22. moovio_sdk/models/components/card.py +36 -34
  23. moovio_sdk/models/components/cardverification.py +5 -4
  24. moovio_sdk/models/components/paymentmethodscard.py +25 -23
  25. moovio_sdk/onboarding.py +8 -8
  26. moovio_sdk/payment_links.py +12 -12
  27. moovio_sdk/payment_methods.py +4 -4
  28. moovio_sdk/ping.py +2 -2
  29. moovio_sdk/receipts.py +4 -4
  30. moovio_sdk/representatives.py +10 -10
  31. moovio_sdk/scheduling.py +12 -12
  32. moovio_sdk/sweeps.py +12 -12
  33. moovio_sdk/terminal_applications.py +8 -8
  34. moovio_sdk/terminal_configurations.py +2 -2
  35. moovio_sdk/transfers.py +22 -22
  36. moovio_sdk/underwriting.py +4 -4
  37. moovio_sdk/wallet_transactions.py +4 -4
  38. moovio_sdk/wallets.py +4 -4
  39. {moovio_sdk-0.3.16.dist-info → moovio_sdk-0.3.18.dist-info}/METADATA +1 -1
  40. {moovio_sdk-0.3.16.dist-info → moovio_sdk-0.3.18.dist-info}/RECORD +41 -41
  41. {moovio_sdk-0.3.16.dist-info → moovio_sdk-0.3.18.dist-info}/WHEEL +0 -0
@@ -127,7 +127,7 @@ class Representatives(BaseSDK):
127
127
  hook_ctx=HookContext(
128
128
  base_url=base_url or "",
129
129
  operation_id="createRepresentative",
130
- oauth2_scopes=[],
130
+ oauth2_scopes=None,
131
131
  security_source=get_security_from_env(
132
132
  self.sdk_configuration.security, components.Security
133
133
  ),
@@ -310,7 +310,7 @@ class Representatives(BaseSDK):
310
310
  hook_ctx=HookContext(
311
311
  base_url=base_url or "",
312
312
  operation_id="createRepresentative",
313
- oauth2_scopes=[],
313
+ oauth2_scopes=None,
314
314
  security_source=get_security_from_env(
315
315
  self.sdk_configuration.security, components.Security
316
316
  ),
@@ -444,7 +444,7 @@ class Representatives(BaseSDK):
444
444
  hook_ctx=HookContext(
445
445
  base_url=base_url or "",
446
446
  operation_id="listRepresentatives",
447
- oauth2_scopes=[],
447
+ oauth2_scopes=None,
448
448
  security_source=get_security_from_env(
449
449
  self.sdk_configuration.security, components.Security
450
450
  ),
@@ -559,7 +559,7 @@ class Representatives(BaseSDK):
559
559
  hook_ctx=HookContext(
560
560
  base_url=base_url or "",
561
561
  operation_id="listRepresentatives",
562
- oauth2_scopes=[],
562
+ oauth2_scopes=None,
563
563
  security_source=get_security_from_env(
564
564
  self.sdk_configuration.security, components.Security
565
565
  ),
@@ -674,7 +674,7 @@ class Representatives(BaseSDK):
674
674
  hook_ctx=HookContext(
675
675
  base_url=base_url or "",
676
676
  operation_id="deleteRepresentative",
677
- oauth2_scopes=[],
677
+ oauth2_scopes=None,
678
678
  security_source=get_security_from_env(
679
679
  self.sdk_configuration.security, components.Security
680
680
  ),
@@ -801,7 +801,7 @@ class Representatives(BaseSDK):
801
801
  hook_ctx=HookContext(
802
802
  base_url=base_url or "",
803
803
  operation_id="deleteRepresentative",
804
- oauth2_scopes=[],
804
+ oauth2_scopes=None,
805
805
  security_source=get_security_from_env(
806
806
  self.sdk_configuration.security, components.Security
807
807
  ),
@@ -928,7 +928,7 @@ class Representatives(BaseSDK):
928
928
  hook_ctx=HookContext(
929
929
  base_url=base_url or "",
930
930
  operation_id="getRepresentative",
931
- oauth2_scopes=[],
931
+ oauth2_scopes=None,
932
932
  security_source=get_security_from_env(
933
933
  self.sdk_configuration.security, components.Security
934
934
  ),
@@ -1041,7 +1041,7 @@ class Representatives(BaseSDK):
1041
1041
  hook_ctx=HookContext(
1042
1042
  base_url=base_url or "",
1043
1043
  operation_id="getRepresentative",
1044
- oauth2_scopes=[],
1044
+ oauth2_scopes=None,
1045
1045
  security_source=get_security_from_env(
1046
1046
  self.sdk_configuration.security, components.Security
1047
1047
  ),
@@ -1239,7 +1239,7 @@ class Representatives(BaseSDK):
1239
1239
  hook_ctx=HookContext(
1240
1240
  base_url=base_url or "",
1241
1241
  operation_id="updateRepresentative",
1242
- oauth2_scopes=[],
1242
+ oauth2_scopes=None,
1243
1243
  security_source=get_security_from_env(
1244
1244
  self.sdk_configuration.security, components.Security
1245
1245
  ),
@@ -1452,7 +1452,7 @@ class Representatives(BaseSDK):
1452
1452
  hook_ctx=HookContext(
1453
1453
  base_url=base_url or "",
1454
1454
  operation_id="updateRepresentative",
1455
- oauth2_scopes=[],
1455
+ oauth2_scopes=None,
1456
1456
  security_source=get_security_from_env(
1457
1457
  self.sdk_configuration.security, components.Security
1458
1458
  ),
moovio_sdk/scheduling.py CHANGED
@@ -93,7 +93,7 @@ class Scheduling(BaseSDK):
93
93
  hook_ctx=HookContext(
94
94
  base_url=base_url or "",
95
95
  operation_id="createSchedule",
96
- oauth2_scopes=[],
96
+ oauth2_scopes=None,
97
97
  security_source=get_security_from_env(
98
98
  self.sdk_configuration.security, components.Security
99
99
  ),
@@ -242,7 +242,7 @@ class Scheduling(BaseSDK):
242
242
  hook_ctx=HookContext(
243
243
  base_url=base_url or "",
244
244
  operation_id="createSchedule",
245
- oauth2_scopes=[],
245
+ oauth2_scopes=None,
246
246
  security_source=get_security_from_env(
247
247
  self.sdk_configuration.security, components.Security
248
248
  ),
@@ -382,7 +382,7 @@ class Scheduling(BaseSDK):
382
382
  hook_ctx=HookContext(
383
383
  base_url=base_url or "",
384
384
  operation_id="listSchedules",
385
- oauth2_scopes=[],
385
+ oauth2_scopes=None,
386
386
  security_source=get_security_from_env(
387
387
  self.sdk_configuration.security, components.Security
388
388
  ),
@@ -503,7 +503,7 @@ class Scheduling(BaseSDK):
503
503
  hook_ctx=HookContext(
504
504
  base_url=base_url or "",
505
505
  operation_id="listSchedules",
506
- oauth2_scopes=[],
506
+ oauth2_scopes=None,
507
507
  security_source=get_security_from_env(
508
508
  self.sdk_configuration.security, components.Security
509
509
  ),
@@ -636,7 +636,7 @@ class Scheduling(BaseSDK):
636
636
  hook_ctx=HookContext(
637
637
  base_url=base_url or "",
638
638
  operation_id="updateSchedule",
639
- oauth2_scopes=[],
639
+ oauth2_scopes=None,
640
640
  security_source=get_security_from_env(
641
641
  self.sdk_configuration.security, components.Security
642
642
  ),
@@ -788,7 +788,7 @@ class Scheduling(BaseSDK):
788
788
  hook_ctx=HookContext(
789
789
  base_url=base_url or "",
790
790
  operation_id="updateSchedule",
791
- oauth2_scopes=[],
791
+ oauth2_scopes=None,
792
792
  security_source=get_security_from_env(
793
793
  self.sdk_configuration.security, components.Security
794
794
  ),
@@ -922,7 +922,7 @@ class Scheduling(BaseSDK):
922
922
  hook_ctx=HookContext(
923
923
  base_url=base_url or "",
924
924
  operation_id="getSchedules",
925
- oauth2_scopes=[],
925
+ oauth2_scopes=None,
926
926
  security_source=get_security_from_env(
927
927
  self.sdk_configuration.security, components.Security
928
928
  ),
@@ -1035,7 +1035,7 @@ class Scheduling(BaseSDK):
1035
1035
  hook_ctx=HookContext(
1036
1036
  base_url=base_url or "",
1037
1037
  operation_id="getSchedules",
1038
- oauth2_scopes=[],
1038
+ oauth2_scopes=None,
1039
1039
  security_source=get_security_from_env(
1040
1040
  self.sdk_configuration.security, components.Security
1041
1041
  ),
@@ -1148,7 +1148,7 @@ class Scheduling(BaseSDK):
1148
1148
  hook_ctx=HookContext(
1149
1149
  base_url=base_url or "",
1150
1150
  operation_id="cancelSchedule",
1151
- oauth2_scopes=[],
1151
+ oauth2_scopes=None,
1152
1152
  security_source=get_security_from_env(
1153
1153
  self.sdk_configuration.security, components.Security
1154
1154
  ),
@@ -1275,7 +1275,7 @@ class Scheduling(BaseSDK):
1275
1275
  hook_ctx=HookContext(
1276
1276
  base_url=base_url or "",
1277
1277
  operation_id="cancelSchedule",
1278
- oauth2_scopes=[],
1278
+ oauth2_scopes=None,
1279
1279
  security_source=get_security_from_env(
1280
1280
  self.sdk_configuration.security, components.Security
1281
1281
  ),
@@ -1405,7 +1405,7 @@ class Scheduling(BaseSDK):
1405
1405
  hook_ctx=HookContext(
1406
1406
  base_url=base_url or "",
1407
1407
  operation_id="getScheduledOccurrence",
1408
- oauth2_scopes=[],
1408
+ oauth2_scopes=None,
1409
1409
  security_source=get_security_from_env(
1410
1410
  self.sdk_configuration.security, components.Security
1411
1411
  ),
@@ -1523,7 +1523,7 @@ class Scheduling(BaseSDK):
1523
1523
  hook_ctx=HookContext(
1524
1524
  base_url=base_url or "",
1525
1525
  operation_id="getScheduledOccurrence",
1526
- oauth2_scopes=[],
1526
+ oauth2_scopes=None,
1527
1527
  security_source=get_security_from_env(
1528
1528
  self.sdk_configuration.security, components.Security
1529
1529
  ),
moovio_sdk/sweeps.py CHANGED
@@ -102,7 +102,7 @@ class Sweeps(BaseSDK):
102
102
  hook_ctx=HookContext(
103
103
  base_url=base_url or "",
104
104
  operation_id="createSweepConfig",
105
- oauth2_scopes=[],
105
+ oauth2_scopes=None,
106
106
  security_source=get_security_from_env(
107
107
  self.sdk_configuration.security, components.Security
108
108
  ),
@@ -260,7 +260,7 @@ class Sweeps(BaseSDK):
260
260
  hook_ctx=HookContext(
261
261
  base_url=base_url or "",
262
262
  operation_id="createSweepConfig",
263
- oauth2_scopes=[],
263
+ oauth2_scopes=None,
264
264
  security_source=get_security_from_env(
265
265
  self.sdk_configuration.security, components.Security
266
266
  ),
@@ -391,7 +391,7 @@ class Sweeps(BaseSDK):
391
391
  hook_ctx=HookContext(
392
392
  base_url=base_url or "",
393
393
  operation_id="listSweepConfigs",
394
- oauth2_scopes=[],
394
+ oauth2_scopes=None,
395
395
  security_source=get_security_from_env(
396
396
  self.sdk_configuration.security, components.Security
397
397
  ),
@@ -503,7 +503,7 @@ class Sweeps(BaseSDK):
503
503
  hook_ctx=HookContext(
504
504
  base_url=base_url or "",
505
505
  operation_id="listSweepConfigs",
506
- oauth2_scopes=[],
506
+ oauth2_scopes=None,
507
507
  security_source=get_security_from_env(
508
508
  self.sdk_configuration.security, components.Security
509
509
  ),
@@ -618,7 +618,7 @@ class Sweeps(BaseSDK):
618
618
  hook_ctx=HookContext(
619
619
  base_url=base_url or "",
620
620
  operation_id="getSweepConfig",
621
- oauth2_scopes=[],
621
+ oauth2_scopes=None,
622
622
  security_source=get_security_from_env(
623
623
  self.sdk_configuration.security, components.Security
624
624
  ),
@@ -731,7 +731,7 @@ class Sweeps(BaseSDK):
731
731
  hook_ctx=HookContext(
732
732
  base_url=base_url or "",
733
733
  operation_id="getSweepConfig",
734
- oauth2_scopes=[],
734
+ oauth2_scopes=None,
735
735
  security_source=get_security_from_env(
736
736
  self.sdk_configuration.security, components.Security
737
737
  ),
@@ -889,7 +889,7 @@ class Sweeps(BaseSDK):
889
889
  hook_ctx=HookContext(
890
890
  base_url=base_url or "",
891
891
  operation_id="updateSweepConfig",
892
- oauth2_scopes=[],
892
+ oauth2_scopes=None,
893
893
  security_source=get_security_from_env(
894
894
  self.sdk_configuration.security, components.Security
895
895
  ),
@@ -1068,7 +1068,7 @@ class Sweeps(BaseSDK):
1068
1068
  hook_ctx=HookContext(
1069
1069
  base_url=base_url or "",
1070
1070
  operation_id="updateSweepConfig",
1071
- oauth2_scopes=[],
1071
+ oauth2_scopes=None,
1072
1072
  security_source=get_security_from_env(
1073
1073
  self.sdk_configuration.security, components.Security
1074
1074
  ),
@@ -1214,7 +1214,7 @@ class Sweeps(BaseSDK):
1214
1214
  hook_ctx=HookContext(
1215
1215
  base_url=base_url or "",
1216
1216
  operation_id="listSweeps",
1217
- oauth2_scopes=[],
1217
+ oauth2_scopes=None,
1218
1218
  security_source=get_security_from_env(
1219
1219
  self.sdk_configuration.security, components.Security
1220
1220
  ),
@@ -1339,7 +1339,7 @@ class Sweeps(BaseSDK):
1339
1339
  hook_ctx=HookContext(
1340
1340
  base_url=base_url or "",
1341
1341
  operation_id="listSweeps",
1342
- oauth2_scopes=[],
1342
+ oauth2_scopes=None,
1343
1343
  security_source=get_security_from_env(
1344
1344
  self.sdk_configuration.security, components.Security
1345
1345
  ),
@@ -1455,7 +1455,7 @@ class Sweeps(BaseSDK):
1455
1455
  hook_ctx=HookContext(
1456
1456
  base_url=base_url or "",
1457
1457
  operation_id="getSweep",
1458
- oauth2_scopes=[],
1458
+ oauth2_scopes=None,
1459
1459
  security_source=get_security_from_env(
1460
1460
  self.sdk_configuration.security, components.Security
1461
1461
  ),
@@ -1571,7 +1571,7 @@ class Sweeps(BaseSDK):
1571
1571
  hook_ctx=HookContext(
1572
1572
  base_url=base_url or "",
1573
1573
  operation_id="getSweep",
1574
- oauth2_scopes=[],
1574
+ oauth2_scopes=None,
1575
1575
  security_source=get_security_from_env(
1576
1576
  self.sdk_configuration.security, components.Security
1577
1577
  ),
@@ -90,7 +90,7 @@ class TerminalApplications(BaseSDK):
90
90
  hook_ctx=HookContext(
91
91
  base_url=base_url or "",
92
92
  operation_id="createTerminalApplication",
93
- oauth2_scopes=[],
93
+ oauth2_scopes=None,
94
94
  security_source=get_security_from_env(
95
95
  self.sdk_configuration.security, components.Security
96
96
  ),
@@ -238,7 +238,7 @@ class TerminalApplications(BaseSDK):
238
238
  hook_ctx=HookContext(
239
239
  base_url=base_url or "",
240
240
  operation_id="createTerminalApplication",
241
- oauth2_scopes=[],
241
+ oauth2_scopes=None,
242
242
  security_source=get_security_from_env(
243
243
  self.sdk_configuration.security, components.Security
244
244
  ),
@@ -376,7 +376,7 @@ class TerminalApplications(BaseSDK):
376
376
  hook_ctx=HookContext(
377
377
  base_url=base_url or "",
378
378
  operation_id="listTerminalApplications",
379
- oauth2_scopes=[],
379
+ oauth2_scopes=None,
380
380
  security_source=get_security_from_env(
381
381
  self.sdk_configuration.security, components.Security
382
382
  ),
@@ -493,7 +493,7 @@ class TerminalApplications(BaseSDK):
493
493
  hook_ctx=HookContext(
494
494
  base_url=base_url or "",
495
495
  operation_id="listTerminalApplications",
496
- oauth2_scopes=[],
496
+ oauth2_scopes=None,
497
497
  security_source=get_security_from_env(
498
498
  self.sdk_configuration.security, components.Security
499
499
  ),
@@ -605,7 +605,7 @@ class TerminalApplications(BaseSDK):
605
605
  hook_ctx=HookContext(
606
606
  base_url=base_url or "",
607
607
  operation_id="getTerminalApplication",
608
- oauth2_scopes=[],
608
+ oauth2_scopes=None,
609
609
  security_source=get_security_from_env(
610
610
  self.sdk_configuration.security, components.Security
611
611
  ),
@@ -717,7 +717,7 @@ class TerminalApplications(BaseSDK):
717
717
  hook_ctx=HookContext(
718
718
  base_url=base_url or "",
719
719
  operation_id="getTerminalApplication",
720
- oauth2_scopes=[],
720
+ oauth2_scopes=None,
721
721
  security_source=get_security_from_env(
722
722
  self.sdk_configuration.security, components.Security
723
723
  ),
@@ -829,7 +829,7 @@ class TerminalApplications(BaseSDK):
829
829
  hook_ctx=HookContext(
830
830
  base_url=base_url or "",
831
831
  operation_id="deleteTerminalApplication",
832
- oauth2_scopes=[],
832
+ oauth2_scopes=None,
833
833
  security_source=get_security_from_env(
834
834
  self.sdk_configuration.security, components.Security
835
835
  ),
@@ -953,7 +953,7 @@ class TerminalApplications(BaseSDK):
953
953
  hook_ctx=HookContext(
954
954
  base_url=base_url or "",
955
955
  operation_id="deleteTerminalApplication",
956
- oauth2_scopes=[],
956
+ oauth2_scopes=None,
957
957
  security_source=get_security_from_env(
958
958
  self.sdk_configuration.security, components.Security
959
959
  ),
@@ -78,7 +78,7 @@ class TerminalConfigurations(BaseSDK):
78
78
  hook_ctx=HookContext(
79
79
  base_url=base_url or "",
80
80
  operation_id="getTerminalConfiguration",
81
- oauth2_scopes=[],
81
+ oauth2_scopes=None,
82
82
  security_source=get_security_from_env(
83
83
  self.sdk_configuration.security, components.Security
84
84
  ),
@@ -193,7 +193,7 @@ class TerminalConfigurations(BaseSDK):
193
193
  hook_ctx=HookContext(
194
194
  base_url=base_url or "",
195
195
  operation_id="getTerminalConfiguration",
196
- oauth2_scopes=[],
196
+ oauth2_scopes=None,
197
197
  security_source=get_security_from_env(
198
198
  self.sdk_configuration.security, components.Security
199
199
  ),
moovio_sdk/transfers.py CHANGED
@@ -120,7 +120,7 @@ class Transfers(BaseSDK):
120
120
  hook_ctx=HookContext(
121
121
  base_url=base_url or "",
122
122
  operation_id="createTransfer",
123
- oauth2_scopes=[],
123
+ oauth2_scopes=None,
124
124
  security_source=get_security_from_env(
125
125
  self.sdk_configuration.security, components.Security
126
126
  ),
@@ -306,7 +306,7 @@ class Transfers(BaseSDK):
306
306
  hook_ctx=HookContext(
307
307
  base_url=base_url or "",
308
308
  operation_id="createTransfer",
309
- oauth2_scopes=[],
309
+ oauth2_scopes=None,
310
310
  security_source=get_security_from_env(
311
311
  self.sdk_configuration.security, components.Security
312
312
  ),
@@ -482,7 +482,7 @@ class Transfers(BaseSDK):
482
482
  hook_ctx=HookContext(
483
483
  base_url=base_url or "",
484
484
  operation_id="listTransfers",
485
- oauth2_scopes=[],
485
+ oauth2_scopes=None,
486
486
  security_source=get_security_from_env(
487
487
  self.sdk_configuration.security, components.Security
488
488
  ),
@@ -626,7 +626,7 @@ class Transfers(BaseSDK):
626
626
  hook_ctx=HookContext(
627
627
  base_url=base_url or "",
628
628
  operation_id="listTransfers",
629
- oauth2_scopes=[],
629
+ oauth2_scopes=None,
630
630
  security_source=get_security_from_env(
631
631
  self.sdk_configuration.security, components.Security
632
632
  ),
@@ -742,7 +742,7 @@ class Transfers(BaseSDK):
742
742
  hook_ctx=HookContext(
743
743
  base_url=base_url or "",
744
744
  operation_id="getTransfer",
745
- oauth2_scopes=[],
745
+ oauth2_scopes=None,
746
746
  security_source=get_security_from_env(
747
747
  self.sdk_configuration.security, components.Security
748
748
  ),
@@ -858,7 +858,7 @@ class Transfers(BaseSDK):
858
858
  hook_ctx=HookContext(
859
859
  base_url=base_url or "",
860
860
  operation_id="getTransfer",
861
- oauth2_scopes=[],
861
+ oauth2_scopes=None,
862
862
  security_source=get_security_from_env(
863
863
  self.sdk_configuration.security, components.Security
864
864
  ),
@@ -981,7 +981,7 @@ class Transfers(BaseSDK):
981
981
  hook_ctx=HookContext(
982
982
  base_url=base_url or "",
983
983
  operation_id="updateTransfer",
984
- oauth2_scopes=[],
984
+ oauth2_scopes=None,
985
985
  security_source=get_security_from_env(
986
986
  self.sdk_configuration.security, components.Security
987
987
  ),
@@ -1104,7 +1104,7 @@ class Transfers(BaseSDK):
1104
1104
  hook_ctx=HookContext(
1105
1105
  base_url=base_url or "",
1106
1106
  operation_id="updateTransfer",
1107
- oauth2_scopes=[],
1107
+ oauth2_scopes=None,
1108
1108
  security_source=get_security_from_env(
1109
1109
  self.sdk_configuration.security, components.Security
1110
1110
  ),
@@ -1217,7 +1217,7 @@ class Transfers(BaseSDK):
1217
1217
  hook_ctx=HookContext(
1218
1218
  base_url=base_url or "",
1219
1219
  operation_id="createCancellation",
1220
- oauth2_scopes=[],
1220
+ oauth2_scopes=None,
1221
1221
  security_source=get_security_from_env(
1222
1222
  self.sdk_configuration.security, components.Security
1223
1223
  ),
@@ -1344,7 +1344,7 @@ class Transfers(BaseSDK):
1344
1344
  hook_ctx=HookContext(
1345
1345
  base_url=base_url or "",
1346
1346
  operation_id="createCancellation",
1347
- oauth2_scopes=[],
1347
+ oauth2_scopes=None,
1348
1348
  security_source=get_security_from_env(
1349
1349
  self.sdk_configuration.security, components.Security
1350
1350
  ),
@@ -1474,7 +1474,7 @@ class Transfers(BaseSDK):
1474
1474
  hook_ctx=HookContext(
1475
1475
  base_url=base_url or "",
1476
1476
  operation_id="getCancellation",
1477
- oauth2_scopes=[],
1477
+ oauth2_scopes=None,
1478
1478
  security_source=get_security_from_env(
1479
1479
  self.sdk_configuration.security, components.Security
1480
1480
  ),
@@ -1590,7 +1590,7 @@ class Transfers(BaseSDK):
1590
1590
  hook_ctx=HookContext(
1591
1591
  base_url=base_url or "",
1592
1592
  operation_id="getCancellation",
1593
- oauth2_scopes=[],
1593
+ oauth2_scopes=None,
1594
1594
  security_source=get_security_from_env(
1595
1595
  self.sdk_configuration.security, components.Security
1596
1596
  ),
@@ -1724,7 +1724,7 @@ class Transfers(BaseSDK):
1724
1724
  hook_ctx=HookContext(
1725
1725
  base_url=base_url or "",
1726
1726
  operation_id="initiateRefund",
1727
- oauth2_scopes=[],
1727
+ oauth2_scopes=None,
1728
1728
  security_source=get_security_from_env(
1729
1729
  self.sdk_configuration.security, components.Security
1730
1730
  ),
@@ -1891,7 +1891,7 @@ class Transfers(BaseSDK):
1891
1891
  hook_ctx=HookContext(
1892
1892
  base_url=base_url or "",
1893
1893
  operation_id="initiateRefund",
1894
- oauth2_scopes=[],
1894
+ oauth2_scopes=None,
1895
1895
  security_source=get_security_from_env(
1896
1896
  self.sdk_configuration.security, components.Security
1897
1897
  ),
@@ -2037,7 +2037,7 @@ class Transfers(BaseSDK):
2037
2037
  hook_ctx=HookContext(
2038
2038
  base_url=base_url or "",
2039
2039
  operation_id="listRefunds",
2040
- oauth2_scopes=[],
2040
+ oauth2_scopes=None,
2041
2041
  security_source=get_security_from_env(
2042
2042
  self.sdk_configuration.security, components.Security
2043
2043
  ),
@@ -2152,7 +2152,7 @@ class Transfers(BaseSDK):
2152
2152
  hook_ctx=HookContext(
2153
2153
  base_url=base_url or "",
2154
2154
  operation_id="listRefunds",
2155
- oauth2_scopes=[],
2155
+ oauth2_scopes=None,
2156
2156
  security_source=get_security_from_env(
2157
2157
  self.sdk_configuration.security, components.Security
2158
2158
  ),
@@ -2270,7 +2270,7 @@ class Transfers(BaseSDK):
2270
2270
  hook_ctx=HookContext(
2271
2271
  base_url=base_url or "",
2272
2272
  operation_id="getRefund",
2273
- oauth2_scopes=[],
2273
+ oauth2_scopes=None,
2274
2274
  security_source=get_security_from_env(
2275
2275
  self.sdk_configuration.security, components.Security
2276
2276
  ),
@@ -2388,7 +2388,7 @@ class Transfers(BaseSDK):
2388
2388
  hook_ctx=HookContext(
2389
2389
  base_url=base_url or "",
2390
2390
  operation_id="getRefund",
2391
- oauth2_scopes=[],
2391
+ oauth2_scopes=None,
2392
2392
  security_source=get_security_from_env(
2393
2393
  self.sdk_configuration.security, components.Security
2394
2394
  ),
@@ -2520,7 +2520,7 @@ class Transfers(BaseSDK):
2520
2520
  hook_ctx=HookContext(
2521
2521
  base_url=base_url or "",
2522
2522
  operation_id="createReversal",
2523
- oauth2_scopes=[],
2523
+ oauth2_scopes=None,
2524
2524
  security_source=get_security_from_env(
2525
2525
  self.sdk_configuration.security, components.Security
2526
2526
  ),
@@ -2671,7 +2671,7 @@ class Transfers(BaseSDK):
2671
2671
  hook_ctx=HookContext(
2672
2672
  base_url=base_url or "",
2673
2673
  operation_id="createReversal",
2674
- oauth2_scopes=[],
2674
+ oauth2_scopes=None,
2675
2675
  security_source=get_security_from_env(
2676
2676
  self.sdk_configuration.security, components.Security
2677
2677
  ),
@@ -2824,7 +2824,7 @@ class Transfers(BaseSDK):
2824
2824
  hook_ctx=HookContext(
2825
2825
  base_url=base_url or "",
2826
2826
  operation_id="createTransferOptions",
2827
- oauth2_scopes=[],
2827
+ oauth2_scopes=None,
2828
2828
  security_source=get_security_from_env(
2829
2829
  self.sdk_configuration.security, components.Security
2830
2830
  ),
@@ -2975,7 +2975,7 @@ class Transfers(BaseSDK):
2975
2975
  hook_ctx=HookContext(
2976
2976
  base_url=base_url or "",
2977
2977
  operation_id="createTransferOptions",
2978
- oauth2_scopes=[],
2978
+ oauth2_scopes=None,
2979
2979
  security_source=get_security_from_env(
2980
2980
  self.sdk_configuration.security, components.Security
2981
2981
  ),
@@ -77,7 +77,7 @@ class Underwriting(BaseSDK):
77
77
  hook_ctx=HookContext(
78
78
  base_url=base_url or "",
79
79
  operation_id="getUnderwriting",
80
- oauth2_scopes=[],
80
+ oauth2_scopes=None,
81
81
  security_source=get_security_from_env(
82
82
  self.sdk_configuration.security, components.Security
83
83
  ),
@@ -189,7 +189,7 @@ class Underwriting(BaseSDK):
189
189
  hook_ctx=HookContext(
190
190
  base_url=base_url or "",
191
191
  operation_id="getUnderwriting",
192
- oauth2_scopes=[],
192
+ oauth2_scopes=None,
193
193
  security_source=get_security_from_env(
194
194
  self.sdk_configuration.security, components.Security
195
195
  ),
@@ -341,7 +341,7 @@ class Underwriting(BaseSDK):
341
341
  hook_ctx=HookContext(
342
342
  base_url=base_url or "",
343
343
  operation_id="upsertUnderwriting",
344
- oauth2_scopes=[],
344
+ oauth2_scopes=None,
345
345
  security_source=get_security_from_env(
346
346
  self.sdk_configuration.security, components.Security
347
347
  ),
@@ -514,7 +514,7 @@ class Underwriting(BaseSDK):
514
514
  hook_ctx=HookContext(
515
515
  base_url=base_url or "",
516
516
  operation_id="upsertUnderwriting",
517
- oauth2_scopes=[],
517
+ oauth2_scopes=None,
518
518
  security_source=get_security_from_env(
519
519
  self.sdk_configuration.security, components.Security
520
520
  ),
@@ -117,7 +117,7 @@ class WalletTransactions(BaseSDK):
117
117
  hook_ctx=HookContext(
118
118
  base_url=base_url or "",
119
119
  operation_id="listWalletTransactions",
120
- oauth2_scopes=[],
120
+ oauth2_scopes=None,
121
121
  security_source=get_security_from_env(
122
122
  self.sdk_configuration.security, components.Security
123
123
  ),
@@ -270,7 +270,7 @@ class WalletTransactions(BaseSDK):
270
270
  hook_ctx=HookContext(
271
271
  base_url=base_url or "",
272
272
  operation_id="listWalletTransactions",
273
- oauth2_scopes=[],
273
+ oauth2_scopes=None,
274
274
  security_source=get_security_from_env(
275
275
  self.sdk_configuration.security, components.Security
276
276
  ),
@@ -390,7 +390,7 @@ class WalletTransactions(BaseSDK):
390
390
  hook_ctx=HookContext(
391
391
  base_url=base_url or "",
392
392
  operation_id="getWalletTransaction",
393
- oauth2_scopes=[],
393
+ oauth2_scopes=None,
394
394
  security_source=get_security_from_env(
395
395
  self.sdk_configuration.security, components.Security
396
396
  ),
@@ -510,7 +510,7 @@ class WalletTransactions(BaseSDK):
510
510
  hook_ctx=HookContext(
511
511
  base_url=base_url or "",
512
512
  operation_id="getWalletTransaction",
513
- oauth2_scopes=[],
513
+ oauth2_scopes=None,
514
514
  security_source=get_security_from_env(
515
515
  self.sdk_configuration.security, components.Security
516
516
  ),