moovio_sdk 0.3.18__py3-none-any.whl → 0.3.20__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 (48) 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 +24 -24
  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 +8 -8
  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/achparticipant.py +1 -1
  22. moovio_sdk/models/components/createevidencefilemultipart.py +2 -2
  23. moovio_sdk/models/components/createtransfer.py +9 -2
  24. moovio_sdk/models/components/patchaccount.py +1 -1
  25. moovio_sdk/models/components/patchsweepconfig.py +1 -1
  26. moovio_sdk/models/components/patchtransfer.py +1 -1
  27. moovio_sdk/models/components/transfer.py +9 -2
  28. moovio_sdk/models/components/updatepaymentlink.py +1 -1
  29. moovio_sdk/models/components/updaterepresentative.py +1 -1
  30. moovio_sdk/models/errors/transfer.py +6 -1
  31. moovio_sdk/onboarding.py +8 -8
  32. moovio_sdk/payment_links.py +12 -12
  33. moovio_sdk/payment_methods.py +4 -4
  34. moovio_sdk/ping.py +2 -2
  35. moovio_sdk/receipts.py +4 -4
  36. moovio_sdk/representatives.py +10 -10
  37. moovio_sdk/scheduling.py +12 -12
  38. moovio_sdk/sweeps.py +12 -12
  39. moovio_sdk/terminal_applications.py +8 -8
  40. moovio_sdk/terminal_configurations.py +2 -2
  41. moovio_sdk/transfers.py +38 -24
  42. moovio_sdk/underwriting.py +4 -4
  43. moovio_sdk/utils/enums.py +67 -27
  44. moovio_sdk/wallet_transactions.py +4 -4
  45. moovio_sdk/wallets.py +4 -4
  46. {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.20.dist-info}/METADATA +2 -2
  47. {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.20.dist-info}/RECORD +48 -48
  48. {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.20.dist-info}/WHEEL +1 -1
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=None,
96
+ oauth2_scopes=[],
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=None,
245
+ oauth2_scopes=[],
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=None,
385
+ oauth2_scopes=[],
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=None,
506
+ oauth2_scopes=[],
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=None,
639
+ oauth2_scopes=[],
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=None,
791
+ oauth2_scopes=[],
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=None,
925
+ oauth2_scopes=[],
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=None,
1038
+ oauth2_scopes=[],
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=None,
1151
+ oauth2_scopes=[],
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=None,
1278
+ oauth2_scopes=[],
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=None,
1408
+ oauth2_scopes=[],
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=None,
1526
+ oauth2_scopes=[],
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=None,
105
+ oauth2_scopes=[],
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=None,
263
+ oauth2_scopes=[],
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=None,
394
+ oauth2_scopes=[],
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=None,
506
+ oauth2_scopes=[],
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=None,
621
+ oauth2_scopes=[],
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=None,
734
+ oauth2_scopes=[],
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=None,
892
+ oauth2_scopes=[],
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=None,
1071
+ oauth2_scopes=[],
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=None,
1217
+ oauth2_scopes=[],
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=None,
1342
+ oauth2_scopes=[],
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=None,
1458
+ oauth2_scopes=[],
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=None,
1574
+ oauth2_scopes=[],
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=None,
93
+ oauth2_scopes=[],
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=None,
241
+ oauth2_scopes=[],
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=None,
379
+ oauth2_scopes=[],
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=None,
496
+ oauth2_scopes=[],
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=None,
608
+ oauth2_scopes=[],
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=None,
720
+ oauth2_scopes=[],
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=None,
832
+ oauth2_scopes=[],
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=None,
956
+ oauth2_scopes=[],
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=None,
81
+ oauth2_scopes=[],
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=None,
196
+ oauth2_scopes=[],
197
197
  security_source=get_security_from_env(
198
198
  self.sdk_configuration.security, components.Security
199
199
  ),
moovio_sdk/transfers.py CHANGED
@@ -30,6 +30,9 @@ class Transfers(BaseSDK):
30
30
  ] = None,
31
31
  description: Optional[str] = None,
32
32
  metadata: Optional[Dict[str, str]] = None,
33
+ sales_tax_amount: Optional[
34
+ Union[components.Amount, components.AmountTypedDict]
35
+ ] = None,
33
36
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
34
37
  server_url: Optional[str] = None,
35
38
  timeout_ms: Optional[int] = None,
@@ -49,8 +52,9 @@ class Transfers(BaseSDK):
49
52
  :param amount:
50
53
  :param x_wait_for: Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
51
54
  :param facilitator_fee: Total or markup fee.
52
- :param description: An optional description of the transfer for your own internal use.
55
+ :param description: An optional description of the transfer that is used on receipts and for your own internal use.
53
56
  :param metadata: Free-form key-value pair list. Useful for storing information that is not captured elsewhere.
57
+ :param sales_tax_amount: Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged.
54
58
  :param retries: Override the default retry configuration for this method
55
59
  :param server_url: Override the default server URL for this method
56
60
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -83,6 +87,9 @@ class Transfers(BaseSDK):
83
87
  ),
84
88
  description=description,
85
89
  metadata=metadata,
90
+ sales_tax_amount=utils.get_pydantic_model(
91
+ sales_tax_amount, Optional[components.Amount]
92
+ ),
86
93
  ),
87
94
  )
88
95
 
@@ -120,7 +127,7 @@ class Transfers(BaseSDK):
120
127
  hook_ctx=HookContext(
121
128
  base_url=base_url or "",
122
129
  operation_id="createTransfer",
123
- oauth2_scopes=None,
130
+ oauth2_scopes=[],
124
131
  security_source=get_security_from_env(
125
132
  self.sdk_configuration.security, components.Security
126
133
  ),
@@ -216,6 +223,9 @@ class Transfers(BaseSDK):
216
223
  ] = None,
217
224
  description: Optional[str] = None,
218
225
  metadata: Optional[Dict[str, str]] = None,
226
+ sales_tax_amount: Optional[
227
+ Union[components.Amount, components.AmountTypedDict]
228
+ ] = None,
219
229
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
220
230
  server_url: Optional[str] = None,
221
231
  timeout_ms: Optional[int] = None,
@@ -235,8 +245,9 @@ class Transfers(BaseSDK):
235
245
  :param amount:
236
246
  :param x_wait_for: Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
237
247
  :param facilitator_fee: Total or markup fee.
238
- :param description: An optional description of the transfer for your own internal use.
248
+ :param description: An optional description of the transfer that is used on receipts and for your own internal use.
239
249
  :param metadata: Free-form key-value pair list. Useful for storing information that is not captured elsewhere.
250
+ :param sales_tax_amount: Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged.
240
251
  :param retries: Override the default retry configuration for this method
241
252
  :param server_url: Override the default server URL for this method
242
253
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -269,6 +280,9 @@ class Transfers(BaseSDK):
269
280
  ),
270
281
  description=description,
271
282
  metadata=metadata,
283
+ sales_tax_amount=utils.get_pydantic_model(
284
+ sales_tax_amount, Optional[components.Amount]
285
+ ),
272
286
  ),
273
287
  )
274
288
 
@@ -306,7 +320,7 @@ class Transfers(BaseSDK):
306
320
  hook_ctx=HookContext(
307
321
  base_url=base_url or "",
308
322
  operation_id="createTransfer",
309
- oauth2_scopes=None,
323
+ oauth2_scopes=[],
310
324
  security_source=get_security_from_env(
311
325
  self.sdk_configuration.security, components.Security
312
326
  ),
@@ -482,7 +496,7 @@ class Transfers(BaseSDK):
482
496
  hook_ctx=HookContext(
483
497
  base_url=base_url or "",
484
498
  operation_id="listTransfers",
485
- oauth2_scopes=None,
499
+ oauth2_scopes=[],
486
500
  security_source=get_security_from_env(
487
501
  self.sdk_configuration.security, components.Security
488
502
  ),
@@ -626,7 +640,7 @@ class Transfers(BaseSDK):
626
640
  hook_ctx=HookContext(
627
641
  base_url=base_url or "",
628
642
  operation_id="listTransfers",
629
- oauth2_scopes=None,
643
+ oauth2_scopes=[],
630
644
  security_source=get_security_from_env(
631
645
  self.sdk_configuration.security, components.Security
632
646
  ),
@@ -742,7 +756,7 @@ class Transfers(BaseSDK):
742
756
  hook_ctx=HookContext(
743
757
  base_url=base_url or "",
744
758
  operation_id="getTransfer",
745
- oauth2_scopes=None,
759
+ oauth2_scopes=[],
746
760
  security_source=get_security_from_env(
747
761
  self.sdk_configuration.security, components.Security
748
762
  ),
@@ -858,7 +872,7 @@ class Transfers(BaseSDK):
858
872
  hook_ctx=HookContext(
859
873
  base_url=base_url or "",
860
874
  operation_id="getTransfer",
861
- oauth2_scopes=None,
875
+ oauth2_scopes=[],
862
876
  security_source=get_security_from_env(
863
877
  self.sdk_configuration.security, components.Security
864
878
  ),
@@ -981,7 +995,7 @@ class Transfers(BaseSDK):
981
995
  hook_ctx=HookContext(
982
996
  base_url=base_url or "",
983
997
  operation_id="updateTransfer",
984
- oauth2_scopes=None,
998
+ oauth2_scopes=[],
985
999
  security_source=get_security_from_env(
986
1000
  self.sdk_configuration.security, components.Security
987
1001
  ),
@@ -1104,7 +1118,7 @@ class Transfers(BaseSDK):
1104
1118
  hook_ctx=HookContext(
1105
1119
  base_url=base_url or "",
1106
1120
  operation_id="updateTransfer",
1107
- oauth2_scopes=None,
1121
+ oauth2_scopes=[],
1108
1122
  security_source=get_security_from_env(
1109
1123
  self.sdk_configuration.security, components.Security
1110
1124
  ),
@@ -1217,7 +1231,7 @@ class Transfers(BaseSDK):
1217
1231
  hook_ctx=HookContext(
1218
1232
  base_url=base_url or "",
1219
1233
  operation_id="createCancellation",
1220
- oauth2_scopes=None,
1234
+ oauth2_scopes=[],
1221
1235
  security_source=get_security_from_env(
1222
1236
  self.sdk_configuration.security, components.Security
1223
1237
  ),
@@ -1344,7 +1358,7 @@ class Transfers(BaseSDK):
1344
1358
  hook_ctx=HookContext(
1345
1359
  base_url=base_url or "",
1346
1360
  operation_id="createCancellation",
1347
- oauth2_scopes=None,
1361
+ oauth2_scopes=[],
1348
1362
  security_source=get_security_from_env(
1349
1363
  self.sdk_configuration.security, components.Security
1350
1364
  ),
@@ -1474,7 +1488,7 @@ class Transfers(BaseSDK):
1474
1488
  hook_ctx=HookContext(
1475
1489
  base_url=base_url or "",
1476
1490
  operation_id="getCancellation",
1477
- oauth2_scopes=None,
1491
+ oauth2_scopes=[],
1478
1492
  security_source=get_security_from_env(
1479
1493
  self.sdk_configuration.security, components.Security
1480
1494
  ),
@@ -1590,7 +1604,7 @@ class Transfers(BaseSDK):
1590
1604
  hook_ctx=HookContext(
1591
1605
  base_url=base_url or "",
1592
1606
  operation_id="getCancellation",
1593
- oauth2_scopes=None,
1607
+ oauth2_scopes=[],
1594
1608
  security_source=get_security_from_env(
1595
1609
  self.sdk_configuration.security, components.Security
1596
1610
  ),
@@ -1724,7 +1738,7 @@ class Transfers(BaseSDK):
1724
1738
  hook_ctx=HookContext(
1725
1739
  base_url=base_url or "",
1726
1740
  operation_id="initiateRefund",
1727
- oauth2_scopes=None,
1741
+ oauth2_scopes=[],
1728
1742
  security_source=get_security_from_env(
1729
1743
  self.sdk_configuration.security, components.Security
1730
1744
  ),
@@ -1891,7 +1905,7 @@ class Transfers(BaseSDK):
1891
1905
  hook_ctx=HookContext(
1892
1906
  base_url=base_url or "",
1893
1907
  operation_id="initiateRefund",
1894
- oauth2_scopes=None,
1908
+ oauth2_scopes=[],
1895
1909
  security_source=get_security_from_env(
1896
1910
  self.sdk_configuration.security, components.Security
1897
1911
  ),
@@ -2037,7 +2051,7 @@ class Transfers(BaseSDK):
2037
2051
  hook_ctx=HookContext(
2038
2052
  base_url=base_url or "",
2039
2053
  operation_id="listRefunds",
2040
- oauth2_scopes=None,
2054
+ oauth2_scopes=[],
2041
2055
  security_source=get_security_from_env(
2042
2056
  self.sdk_configuration.security, components.Security
2043
2057
  ),
@@ -2152,7 +2166,7 @@ class Transfers(BaseSDK):
2152
2166
  hook_ctx=HookContext(
2153
2167
  base_url=base_url or "",
2154
2168
  operation_id="listRefunds",
2155
- oauth2_scopes=None,
2169
+ oauth2_scopes=[],
2156
2170
  security_source=get_security_from_env(
2157
2171
  self.sdk_configuration.security, components.Security
2158
2172
  ),
@@ -2270,7 +2284,7 @@ class Transfers(BaseSDK):
2270
2284
  hook_ctx=HookContext(
2271
2285
  base_url=base_url or "",
2272
2286
  operation_id="getRefund",
2273
- oauth2_scopes=None,
2287
+ oauth2_scopes=[],
2274
2288
  security_source=get_security_from_env(
2275
2289
  self.sdk_configuration.security, components.Security
2276
2290
  ),
@@ -2388,7 +2402,7 @@ class Transfers(BaseSDK):
2388
2402
  hook_ctx=HookContext(
2389
2403
  base_url=base_url or "",
2390
2404
  operation_id="getRefund",
2391
- oauth2_scopes=None,
2405
+ oauth2_scopes=[],
2392
2406
  security_source=get_security_from_env(
2393
2407
  self.sdk_configuration.security, components.Security
2394
2408
  ),
@@ -2520,7 +2534,7 @@ class Transfers(BaseSDK):
2520
2534
  hook_ctx=HookContext(
2521
2535
  base_url=base_url or "",
2522
2536
  operation_id="createReversal",
2523
- oauth2_scopes=None,
2537
+ oauth2_scopes=[],
2524
2538
  security_source=get_security_from_env(
2525
2539
  self.sdk_configuration.security, components.Security
2526
2540
  ),
@@ -2671,7 +2685,7 @@ class Transfers(BaseSDK):
2671
2685
  hook_ctx=HookContext(
2672
2686
  base_url=base_url or "",
2673
2687
  operation_id="createReversal",
2674
- oauth2_scopes=None,
2688
+ oauth2_scopes=[],
2675
2689
  security_source=get_security_from_env(
2676
2690
  self.sdk_configuration.security, components.Security
2677
2691
  ),
@@ -2824,7 +2838,7 @@ class Transfers(BaseSDK):
2824
2838
  hook_ctx=HookContext(
2825
2839
  base_url=base_url or "",
2826
2840
  operation_id="createTransferOptions",
2827
- oauth2_scopes=None,
2841
+ oauth2_scopes=[],
2828
2842
  security_source=get_security_from_env(
2829
2843
  self.sdk_configuration.security, components.Security
2830
2844
  ),
@@ -2975,7 +2989,7 @@ class Transfers(BaseSDK):
2975
2989
  hook_ctx=HookContext(
2976
2990
  base_url=base_url or "",
2977
2991
  operation_id="createTransferOptions",
2978
- oauth2_scopes=None,
2992
+ oauth2_scopes=[],
2979
2993
  security_source=get_security_from_env(
2980
2994
  self.sdk_configuration.security, components.Security
2981
2995
  ),
@@ -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=None,
80
+ oauth2_scopes=[],
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=None,
192
+ oauth2_scopes=[],
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=None,
344
+ oauth2_scopes=[],
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=None,
517
+ oauth2_scopes=[],
518
518
  security_source=get_security_from_env(
519
519
  self.sdk_configuration.security, components.Security
520
520
  ),