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
@@ -84,7 +84,7 @@ class Institutions(BaseSDK):
84
84
  hook_ctx=HookContext(
85
85
  base_url=base_url or "",
86
86
  operation_id="listInstitutions",
87
- oauth2_scopes=None,
87
+ oauth2_scopes=[],
88
88
  security_source=get_security_from_env(
89
89
  self.sdk_configuration.security, components.Security
90
90
  ),
@@ -209,7 +209,7 @@ class Institutions(BaseSDK):
209
209
  hook_ctx=HookContext(
210
210
  base_url=base_url or "",
211
211
  operation_id="listInstitutions",
212
- oauth2_scopes=None,
212
+ oauth2_scopes=[],
213
213
  security_source=get_security_from_env(
214
214
  self.sdk_configuration.security, components.Security
215
215
  ),
@@ -94,7 +94,7 @@ class IssuingTransactions(BaseSDK):
94
94
  hook_ctx=HookContext(
95
95
  base_url=base_url or "",
96
96
  operation_id="listIssuedCardAuthorizations",
97
- oauth2_scopes=None,
97
+ oauth2_scopes=[],
98
98
  security_source=get_security_from_env(
99
99
  self.sdk_configuration.security, components.Security
100
100
  ),
@@ -224,7 +224,7 @@ class IssuingTransactions(BaseSDK):
224
224
  hook_ctx=HookContext(
225
225
  base_url=base_url or "",
226
226
  operation_id="listIssuedCardAuthorizations",
227
- oauth2_scopes=None,
227
+ oauth2_scopes=[],
228
228
  security_source=get_security_from_env(
229
229
  self.sdk_configuration.security, components.Security
230
230
  ),
@@ -339,7 +339,7 @@ class IssuingTransactions(BaseSDK):
339
339
  hook_ctx=HookContext(
340
340
  base_url=base_url or "",
341
341
  operation_id="getIssuedCardAuthorization",
342
- oauth2_scopes=None,
342
+ oauth2_scopes=[],
343
343
  security_source=get_security_from_env(
344
344
  self.sdk_configuration.security, components.Security
345
345
  ),
@@ -454,7 +454,7 @@ class IssuingTransactions(BaseSDK):
454
454
  hook_ctx=HookContext(
455
455
  base_url=base_url or "",
456
456
  operation_id="getIssuedCardAuthorization",
457
- oauth2_scopes=None,
457
+ oauth2_scopes=[],
458
458
  security_source=get_security_from_env(
459
459
  self.sdk_configuration.security, components.Security
460
460
  ),
@@ -575,7 +575,7 @@ class IssuingTransactions(BaseSDK):
575
575
  hook_ctx=HookContext(
576
576
  base_url=base_url or "",
577
577
  operation_id="listIssuedCardAuthorizationEvents",
578
- oauth2_scopes=None,
578
+ oauth2_scopes=[],
579
579
  security_source=get_security_from_env(
580
580
  self.sdk_configuration.security, components.Security
581
581
  ),
@@ -696,7 +696,7 @@ class IssuingTransactions(BaseSDK):
696
696
  hook_ctx=HookContext(
697
697
  base_url=base_url or "",
698
698
  operation_id="listIssuedCardAuthorizationEvents",
699
- oauth2_scopes=None,
699
+ oauth2_scopes=[],
700
700
  security_source=get_security_from_env(
701
701
  self.sdk_configuration.security, components.Security
702
702
  ),
@@ -823,7 +823,7 @@ class IssuingTransactions(BaseSDK):
823
823
  hook_ctx=HookContext(
824
824
  base_url=base_url or "",
825
825
  operation_id="listIssuedCardTransactions",
826
- oauth2_scopes=None,
826
+ oauth2_scopes=[],
827
827
  security_source=get_security_from_env(
828
828
  self.sdk_configuration.security, components.Security
829
829
  ),
@@ -950,7 +950,7 @@ class IssuingTransactions(BaseSDK):
950
950
  hook_ctx=HookContext(
951
951
  base_url=base_url or "",
952
952
  operation_id="listIssuedCardTransactions",
953
- oauth2_scopes=None,
953
+ oauth2_scopes=[],
954
954
  security_source=get_security_from_env(
955
955
  self.sdk_configuration.security, components.Security
956
956
  ),
@@ -1065,7 +1065,7 @@ class IssuingTransactions(BaseSDK):
1065
1065
  hook_ctx=HookContext(
1066
1066
  base_url=base_url or "",
1067
1067
  operation_id="getIssuedCardTransaction",
1068
- oauth2_scopes=None,
1068
+ oauth2_scopes=[],
1069
1069
  security_source=get_security_from_env(
1070
1070
  self.sdk_configuration.security, components.Security
1071
1071
  ),
@@ -1180,7 +1180,7 @@ class IssuingTransactions(BaseSDK):
1180
1180
  hook_ctx=HookContext(
1181
1181
  base_url=base_url or "",
1182
1182
  operation_id="getIssuedCardTransaction",
1183
- oauth2_scopes=None,
1183
+ oauth2_scopes=[],
1184
1184
  security_source=get_security_from_env(
1185
1185
  self.sdk_configuration.security, components.Security
1186
1186
  ),
@@ -72,7 +72,7 @@ class AchParticipant(BaseModel):
72
72
 
73
73
  m = {}
74
74
 
75
- for n, f in self.model_fields.items():
75
+ for n, f in type(self).model_fields.items():
76
76
  k = f.alias or n
77
77
  val = serialized.get(k)
78
78
  serialized.pop(k, None)
@@ -36,7 +36,7 @@ class File(BaseModel):
36
36
 
37
37
  class CreateEvidenceFileMultiPartTypedDict(TypedDict):
38
38
  file: FileTypedDict
39
- r"""The file to upload as evidence. Valid types are [jpeg, tiff, pdf].
39
+ r"""The file to upload as evidence. Valid types are [jpeg, tiff, pdf] with a limit of 4MB per file.
40
40
 
41
41
  The `Content-Type` header for this form part must be one of the following:
42
42
  - `image/jpeg`
@@ -48,7 +48,7 @@ class CreateEvidenceFileMultiPartTypedDict(TypedDict):
48
48
 
49
49
  class CreateEvidenceFileMultiPart(BaseModel):
50
50
  file: Annotated[File, FieldMetadata(multipart=MultipartFormMetadata(file=True))]
51
- r"""The file to upload as evidence. Valid types are [jpeg, tiff, pdf].
51
+ r"""The file to upload as evidence. Valid types are [jpeg, tiff, pdf] with a limit of 4MB per file.
52
52
 
53
53
  The `Content-Type` header for this form part must be one of the following:
54
54
  - `image/jpeg`
@@ -23,9 +23,11 @@ class CreateTransferTypedDict(TypedDict):
23
23
  facilitator_fee: NotRequired[FacilitatorFeeTypedDict]
24
24
  r"""Total or markup fee."""
25
25
  description: NotRequired[str]
26
- r"""An optional description of the transfer for your own internal use."""
26
+ r"""An optional description of the transfer that is used on receipts and for your own internal use."""
27
27
  metadata: NotRequired[Dict[str, str]]
28
28
  r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
29
+ sales_tax_amount: NotRequired[AmountTypedDict]
30
+ r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
29
31
 
30
32
 
31
33
  class CreateTransfer(BaseModel):
@@ -43,7 +45,12 @@ class CreateTransfer(BaseModel):
43
45
  r"""Total or markup fee."""
44
46
 
45
47
  description: Optional[str] = None
46
- r"""An optional description of the transfer for your own internal use."""
48
+ r"""An optional description of the transfer that is used on receipts and for your own internal use."""
47
49
 
48
50
  metadata: Optional[Dict[str, str]] = None
49
51
  r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
52
+
53
+ sales_tax_amount: Annotated[
54
+ Optional[Amount], pydantic.Field(alias="salesTaxAmount")
55
+ ] = None
56
+ r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
@@ -117,7 +117,7 @@ class PatchAccount(BaseModel):
117
117
 
118
118
  m = {}
119
119
 
120
- for n, f in self.model_fields.items():
120
+ for n, f in type(self).model_fields.items():
121
121
  k = f.alias or n
122
122
  val = serialized.get(k)
123
123
  serialized.pop(k, None)
@@ -126,7 +126,7 @@ class PatchSweepConfig(BaseModel):
126
126
 
127
127
  m = {}
128
128
 
129
- for n, f in self.model_fields.items():
129
+ for n, f in type(self).model_fields.items():
130
130
  k = f.alias or n
131
131
  val = serialized.get(k)
132
132
  serialized.pop(k, None)
@@ -30,7 +30,7 @@ class PatchTransfer(BaseModel):
30
30
 
31
31
  m = {}
32
32
 
33
- for n, f in self.model_fields.items():
33
+ for n, f in type(self).model_fields.items():
34
34
  k = f.alias or n
35
35
  val = serialized.get(k)
36
36
  serialized.pop(k, None)
@@ -32,7 +32,7 @@ class TransferTypedDict(TypedDict):
32
32
  failure_reason: NotRequired[TransferFailureReason]
33
33
  r"""Reason for a transfer's failure."""
34
34
  description: NotRequired[str]
35
- r"""An optional description of the transfer for your own internal use."""
35
+ r"""An optional description of the transfer that is used on receipts and for your own internal use."""
36
36
  metadata: NotRequired[Dict[str, str]]
37
37
  r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
38
38
  facilitator_fee: NotRequired[FacilitatorFeeTypedDict]
@@ -52,6 +52,8 @@ class TransferTypedDict(TypedDict):
52
52
  sweep_id: NotRequired[str]
53
53
  schedule_id: NotRequired[str]
54
54
  occurrence_id: NotRequired[str]
55
+ sales_tax_amount: NotRequired[AmountTypedDict]
56
+ r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
55
57
 
56
58
 
57
59
  class Transfer(BaseModel):
@@ -80,7 +82,7 @@ class Transfer(BaseModel):
80
82
  r"""Reason for a transfer's failure."""
81
83
 
82
84
  description: Optional[str] = None
83
- r"""An optional description of the transfer for your own internal use."""
85
+ r"""An optional description of the transfer that is used on receipts and for your own internal use."""
84
86
 
85
87
  metadata: Optional[Dict[str, str]] = None
86
88
  r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
@@ -124,3 +126,8 @@ class Transfer(BaseModel):
124
126
  schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
125
127
 
126
128
  occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
129
+
130
+ sales_tax_amount: Annotated[
131
+ Optional[Amount], pydantic.Field(alias="salesTaxAmount")
132
+ ] = None
133
+ r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
@@ -77,7 +77,7 @@ class UpdatePaymentLink(BaseModel):
77
77
 
78
78
  m = {}
79
79
 
80
- for n, f in self.model_fields.items():
80
+ for n, f in type(self).model_fields.items():
81
81
  k = f.alias or n
82
82
  val = serialized.get(k)
83
83
  serialized.pop(k, None)
@@ -203,7 +203,7 @@ class UpdateRepresentative(BaseModel):
203
203
 
204
204
  m = {}
205
205
 
206
- for n, f in self.model_fields.items():
206
+ for n, f in type(self).model_fields.items():
207
207
  k = f.alias or n
208
208
  val = serialized.get(k)
209
209
  serialized.pop(k, None)
@@ -46,7 +46,7 @@ class TransferData(BaseModel):
46
46
  r"""Reason for a transfer's failure."""
47
47
 
48
48
  description: Optional[str] = None
49
- r"""An optional description of the transfer for your own internal use."""
49
+ r"""An optional description of the transfer that is used on receipts and for your own internal use."""
50
50
 
51
51
  metadata: Optional[Dict[str, str]] = None
52
52
  r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
@@ -95,6 +95,11 @@ class TransferData(BaseModel):
95
95
 
96
96
  occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
97
97
 
98
+ sales_tax_amount: Annotated[
99
+ Optional[components_amount.Amount], pydantic.Field(alias="salesTaxAmount")
100
+ ] = None
101
+ r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
102
+
98
103
 
99
104
  class Transfer(Exception):
100
105
  r"""Details of a Transfer."""
moovio_sdk/onboarding.py CHANGED
@@ -97,7 +97,7 @@ class Onboarding(BaseSDK):
97
97
  hook_ctx=HookContext(
98
98
  base_url=base_url or "",
99
99
  operation_id="createOnboardingInvite",
100
- oauth2_scopes=None,
100
+ oauth2_scopes=[],
101
101
  security_source=get_security_from_env(
102
102
  self.sdk_configuration.security, components.Security
103
103
  ),
@@ -250,7 +250,7 @@ class Onboarding(BaseSDK):
250
250
  hook_ctx=HookContext(
251
251
  base_url=base_url or "",
252
252
  operation_id="createOnboardingInvite",
253
- oauth2_scopes=None,
253
+ oauth2_scopes=[],
254
254
  security_source=get_security_from_env(
255
255
  self.sdk_configuration.security, components.Security
256
256
  ),
@@ -384,7 +384,7 @@ class Onboarding(BaseSDK):
384
384
  hook_ctx=HookContext(
385
385
  base_url=base_url or "",
386
386
  operation_id="listOnboardingInvites",
387
- oauth2_scopes=None,
387
+ oauth2_scopes=[],
388
388
  security_source=get_security_from_env(
389
389
  self.sdk_configuration.security, components.Security
390
390
  ),
@@ -499,7 +499,7 @@ class Onboarding(BaseSDK):
499
499
  hook_ctx=HookContext(
500
500
  base_url=base_url or "",
501
501
  operation_id="listOnboardingInvites",
502
- oauth2_scopes=None,
502
+ oauth2_scopes=[],
503
503
  security_source=get_security_from_env(
504
504
  self.sdk_configuration.security, components.Security
505
505
  ),
@@ -611,7 +611,7 @@ class Onboarding(BaseSDK):
611
611
  hook_ctx=HookContext(
612
612
  base_url=base_url or "",
613
613
  operation_id="getOnboardingInvite",
614
- oauth2_scopes=None,
614
+ oauth2_scopes=[],
615
615
  security_source=get_security_from_env(
616
616
  self.sdk_configuration.security, components.Security
617
617
  ),
@@ -721,7 +721,7 @@ class Onboarding(BaseSDK):
721
721
  hook_ctx=HookContext(
722
722
  base_url=base_url or "",
723
723
  operation_id="getOnboardingInvite",
724
- oauth2_scopes=None,
724
+ oauth2_scopes=[],
725
725
  security_source=get_security_from_env(
726
726
  self.sdk_configuration.security, components.Security
727
727
  ),
@@ -831,7 +831,7 @@ class Onboarding(BaseSDK):
831
831
  hook_ctx=HookContext(
832
832
  base_url=base_url or "",
833
833
  operation_id="revokeOnboardingInvite",
834
- oauth2_scopes=None,
834
+ oauth2_scopes=[],
835
835
  security_source=get_security_from_env(
836
836
  self.sdk_configuration.security, components.Security
837
837
  ),
@@ -930,7 +930,7 @@ class Onboarding(BaseSDK):
930
930
  hook_ctx=HookContext(
931
931
  base_url=base_url or "",
932
932
  operation_id="revokeOnboardingInvite",
933
- oauth2_scopes=None,
933
+ oauth2_scopes=[],
934
934
  security_source=get_security_from_env(
935
935
  self.sdk_configuration.security, components.Security
936
936
  ),
@@ -144,7 +144,7 @@ class PaymentLinks(BaseSDK):
144
144
  hook_ctx=HookContext(
145
145
  base_url=base_url or "",
146
146
  operation_id="createPaymentLink",
147
- oauth2_scopes=None,
147
+ oauth2_scopes=[],
148
148
  security_source=get_security_from_env(
149
149
  self.sdk_configuration.security, components.Security
150
150
  ),
@@ -337,7 +337,7 @@ class PaymentLinks(BaseSDK):
337
337
  hook_ctx=HookContext(
338
338
  base_url=base_url or "",
339
339
  operation_id="createPaymentLink",
340
- oauth2_scopes=None,
340
+ oauth2_scopes=[],
341
341
  security_source=get_security_from_env(
342
342
  self.sdk_configuration.security, components.Security
343
343
  ),
@@ -468,7 +468,7 @@ class PaymentLinks(BaseSDK):
468
468
  hook_ctx=HookContext(
469
469
  base_url=base_url or "",
470
470
  operation_id="listPaymentLinks",
471
- oauth2_scopes=None,
471
+ oauth2_scopes=[],
472
472
  security_source=get_security_from_env(
473
473
  self.sdk_configuration.security, components.Security
474
474
  ),
@@ -580,7 +580,7 @@ class PaymentLinks(BaseSDK):
580
580
  hook_ctx=HookContext(
581
581
  base_url=base_url or "",
582
582
  operation_id="listPaymentLinks",
583
- oauth2_scopes=None,
583
+ oauth2_scopes=[],
584
584
  security_source=get_security_from_env(
585
585
  self.sdk_configuration.security, components.Security
586
586
  ),
@@ -695,7 +695,7 @@ class PaymentLinks(BaseSDK):
695
695
  hook_ctx=HookContext(
696
696
  base_url=base_url or "",
697
697
  operation_id="getPaymentLink",
698
- oauth2_scopes=None,
698
+ oauth2_scopes=[],
699
699
  security_source=get_security_from_env(
700
700
  self.sdk_configuration.security, components.Security
701
701
  ),
@@ -808,7 +808,7 @@ class PaymentLinks(BaseSDK):
808
808
  hook_ctx=HookContext(
809
809
  base_url=base_url or "",
810
810
  operation_id="getPaymentLink",
811
- oauth2_scopes=None,
811
+ oauth2_scopes=[],
812
812
  security_source=get_security_from_env(
813
813
  self.sdk_configuration.security, components.Security
814
814
  ),
@@ -980,7 +980,7 @@ class PaymentLinks(BaseSDK):
980
980
  hook_ctx=HookContext(
981
981
  base_url=base_url or "",
982
982
  operation_id="updatePaymentLink",
983
- oauth2_scopes=None,
983
+ oauth2_scopes=[],
984
984
  security_source=get_security_from_env(
985
985
  self.sdk_configuration.security, components.Security
986
986
  ),
@@ -1173,7 +1173,7 @@ class PaymentLinks(BaseSDK):
1173
1173
  hook_ctx=HookContext(
1174
1174
  base_url=base_url or "",
1175
1175
  operation_id="updatePaymentLink",
1176
- oauth2_scopes=None,
1176
+ oauth2_scopes=[],
1177
1177
  security_source=get_security_from_env(
1178
1178
  self.sdk_configuration.security, components.Security
1179
1179
  ),
@@ -1307,7 +1307,7 @@ class PaymentLinks(BaseSDK):
1307
1307
  hook_ctx=HookContext(
1308
1308
  base_url=base_url or "",
1309
1309
  operation_id="disablePaymentLink",
1310
- oauth2_scopes=None,
1310
+ oauth2_scopes=[],
1311
1311
  security_source=get_security_from_env(
1312
1312
  self.sdk_configuration.security, components.Security
1313
1313
  ),
@@ -1409,7 +1409,7 @@ class PaymentLinks(BaseSDK):
1409
1409
  hook_ctx=HookContext(
1410
1410
  base_url=base_url or "",
1411
1411
  operation_id="disablePaymentLink",
1412
- oauth2_scopes=None,
1412
+ oauth2_scopes=[],
1413
1413
  security_source=get_security_from_env(
1414
1414
  self.sdk_configuration.security, components.Security
1415
1415
  ),
@@ -1517,7 +1517,7 @@ class PaymentLinks(BaseSDK):
1517
1517
  hook_ctx=HookContext(
1518
1518
  base_url=base_url or "",
1519
1519
  operation_id="getPaymentLinkQRCode",
1520
- oauth2_scopes=None,
1520
+ oauth2_scopes=[],
1521
1521
  security_source=get_security_from_env(
1522
1522
  self.sdk_configuration.security, components.Security
1523
1523
  ),
@@ -1642,7 +1642,7 @@ class PaymentLinks(BaseSDK):
1642
1642
  hook_ctx=HookContext(
1643
1643
  base_url=base_url or "",
1644
1644
  operation_id="getPaymentLinkQRCode",
1645
- oauth2_scopes=None,
1645
+ oauth2_scopes=[],
1646
1646
  security_source=get_security_from_env(
1647
1647
  self.sdk_configuration.security, components.Security
1648
1648
  ),
@@ -82,7 +82,7 @@ class PaymentMethods(BaseSDK):
82
82
  hook_ctx=HookContext(
83
83
  base_url=base_url or "",
84
84
  operation_id="listPaymentMethods",
85
- oauth2_scopes=None,
85
+ oauth2_scopes=[],
86
86
  security_source=get_security_from_env(
87
87
  self.sdk_configuration.security, components.Security
88
88
  ),
@@ -201,7 +201,7 @@ class PaymentMethods(BaseSDK):
201
201
  hook_ctx=HookContext(
202
202
  base_url=base_url or "",
203
203
  operation_id="listPaymentMethods",
204
- oauth2_scopes=None,
204
+ oauth2_scopes=[],
205
205
  security_source=get_security_from_env(
206
206
  self.sdk_configuration.security, components.Security
207
207
  ),
@@ -316,7 +316,7 @@ class PaymentMethods(BaseSDK):
316
316
  hook_ctx=HookContext(
317
317
  base_url=base_url or "",
318
318
  operation_id="getPaymentMethod",
319
- oauth2_scopes=None,
319
+ oauth2_scopes=[],
320
320
  security_source=get_security_from_env(
321
321
  self.sdk_configuration.security, components.Security
322
322
  ),
@@ -429,7 +429,7 @@ class PaymentMethods(BaseSDK):
429
429
  hook_ctx=HookContext(
430
430
  base_url=base_url or "",
431
431
  operation_id="getPaymentMethod",
432
- oauth2_scopes=None,
432
+ oauth2_scopes=[],
433
433
  security_source=get_security_from_env(
434
434
  self.sdk_configuration.security, components.Security
435
435
  ),
moovio_sdk/ping.py CHANGED
@@ -77,7 +77,7 @@ class Ping(BaseSDK):
77
77
  hook_ctx=HookContext(
78
78
  base_url=base_url or "",
79
79
  operation_id="ping",
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
  ),
@@ -188,7 +188,7 @@ class Ping(BaseSDK):
188
188
  hook_ctx=HookContext(
189
189
  base_url=base_url or "",
190
190
  operation_id="ping",
191
- oauth2_scopes=None,
191
+ oauth2_scopes=[],
192
192
  security_source=get_security_from_env(
193
193
  self.sdk_configuration.security, components.Security
194
194
  ),
moovio_sdk/receipts.py CHANGED
@@ -80,7 +80,7 @@ class Receipts(BaseSDK):
80
80
  hook_ctx=HookContext(
81
81
  base_url=base_url or "",
82
82
  operation_id="createReceipts",
83
- oauth2_scopes=None,
83
+ oauth2_scopes=[],
84
84
  security_source=get_security_from_env(
85
85
  self.sdk_configuration.security, components.Security
86
86
  ),
@@ -216,7 +216,7 @@ class Receipts(BaseSDK):
216
216
  hook_ctx=HookContext(
217
217
  base_url=base_url or "",
218
218
  operation_id="createReceipts",
219
- oauth2_scopes=None,
219
+ oauth2_scopes=[],
220
220
  security_source=get_security_from_env(
221
221
  self.sdk_configuration.security, components.Security
222
222
  ),
@@ -347,7 +347,7 @@ class Receipts(BaseSDK):
347
347
  hook_ctx=HookContext(
348
348
  base_url=base_url or "",
349
349
  operation_id="listReceipts",
350
- oauth2_scopes=None,
350
+ oauth2_scopes=[],
351
351
  security_source=get_security_from_env(
352
352
  self.sdk_configuration.security, components.Security
353
353
  ),
@@ -459,7 +459,7 @@ class Receipts(BaseSDK):
459
459
  hook_ctx=HookContext(
460
460
  base_url=base_url or "",
461
461
  operation_id="listReceipts",
462
- oauth2_scopes=None,
462
+ oauth2_scopes=[],
463
463
  security_source=get_security_from_env(
464
464
  self.sdk_configuration.security, components.Security
465
465
  ),
@@ -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=None,
130
+ oauth2_scopes=[],
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=None,
313
+ oauth2_scopes=[],
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=None,
447
+ oauth2_scopes=[],
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=None,
562
+ oauth2_scopes=[],
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=None,
677
+ oauth2_scopes=[],
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=None,
804
+ oauth2_scopes=[],
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=None,
931
+ oauth2_scopes=[],
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=None,
1044
+ oauth2_scopes=[],
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=None,
1242
+ oauth2_scopes=[],
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=None,
1455
+ oauth2_scopes=[],
1456
1456
  security_source=get_security_from_env(
1457
1457
  self.sdk_configuration.security, components.Security
1458
1458
  ),