moovio_sdk 0.3.17__py3-none-any.whl → 0.3.19__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.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/models/components/card.py +36 -34
- moovio_sdk/models/components/createtransfer.py +7 -0
- moovio_sdk/models/components/paymentmethodscard.py +25 -23
- moovio_sdk/models/components/transfer.py +7 -0
- moovio_sdk/models/errors/transfer.py +5 -0
- moovio_sdk/transfers.py +14 -0
- {moovio_sdk-0.3.17.dist-info → moovio_sdk-0.3.19.dist-info}/METADATA +1 -1
- {moovio_sdk-0.3.17.dist-info → moovio_sdk-0.3.19.dist-info}/RECORD +10 -10
- {moovio_sdk-0.3.17.dist-info → moovio_sdk-0.3.19.dist-info}/WHEEL +0 -0
moovio_sdk/_version.py
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
import importlib.metadata
|
4
4
|
|
5
5
|
__title__: str = "moovio_sdk"
|
6
|
-
__version__: str = "0.3.
|
6
|
+
__version__: str = "0.3.19"
|
7
7
|
__openapi_doc_version__: str = "latest"
|
8
|
-
__gen_version__: str = "2.
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.3.
|
8
|
+
__gen_version__: str = "2.563.0"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.19 2.563.0 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -39,24 +39,20 @@ class CardTypedDict(TypedDict):
|
|
39
39
|
billing_address: CardAddressTypedDict
|
40
40
|
card_verification: CardVerificationTypedDict
|
41
41
|
r"""The results of submitting cardholder data to a card network for verification."""
|
42
|
-
issuer: str
|
43
|
-
r"""Financial institution that issued the card."""
|
44
|
-
issuer_country: str
|
45
|
-
r"""Country where the card was issued."""
|
46
|
-
issuer_url: str
|
47
|
-
r"""URL of the issuer."""
|
48
|
-
issuer_phone: str
|
49
|
-
r"""Phone number of the issuer."""
|
50
|
-
domestic_push_to_card: DomesticPushToCard
|
51
|
-
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
52
|
-
domestic_pull_from_card: DomesticPullFromCard
|
53
|
-
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
54
42
|
card_category: NotRequired[str]
|
55
43
|
r"""The category or level of the card defined by the issuer.
|
56
44
|
Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
|
57
45
|
"""
|
58
46
|
holder_name: NotRequired[str]
|
59
47
|
r"""The name of the cardholder as it appears on the card."""
|
48
|
+
issuer: NotRequired[str]
|
49
|
+
r"""Financial institution that issued the card."""
|
50
|
+
issuer_country: NotRequired[str]
|
51
|
+
r"""Country where the card was issued."""
|
52
|
+
issuer_url: NotRequired[str]
|
53
|
+
r"""URL of the issuer."""
|
54
|
+
issuer_phone: NotRequired[str]
|
55
|
+
r"""Phone number of the issuer."""
|
60
56
|
commercial: NotRequired[bool]
|
61
57
|
r"""If true, the card is for commercial use, or associated with a business.
|
62
58
|
If false, the card is associated with a general consumer.
|
@@ -70,6 +66,10 @@ class CardTypedDict(TypedDict):
|
|
70
66
|
merchant_account_id: NotRequired[str]
|
71
67
|
card_account_updater: NotRequired[CardAccountUpdaterTypedDict]
|
72
68
|
r"""The results of the most recent card update request."""
|
69
|
+
domestic_push_to_card: NotRequired[DomesticPushToCard]
|
70
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
71
|
+
domestic_pull_from_card: NotRequired[DomesticPullFromCard]
|
72
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
73
73
|
payment_methods: NotRequired[List[BasicPaymentMethodTypedDict]]
|
74
74
|
|
75
75
|
|
@@ -107,28 +107,6 @@ class Card(BaseModel):
|
|
107
107
|
]
|
108
108
|
r"""The results of submitting cardholder data to a card network for verification."""
|
109
109
|
|
110
|
-
issuer: str
|
111
|
-
r"""Financial institution that issued the card."""
|
112
|
-
|
113
|
-
issuer_country: Annotated[str, pydantic.Field(alias="issuerCountry")]
|
114
|
-
r"""Country where the card was issued."""
|
115
|
-
|
116
|
-
issuer_url: Annotated[str, pydantic.Field(alias="issuerURL")]
|
117
|
-
r"""URL of the issuer."""
|
118
|
-
|
119
|
-
issuer_phone: Annotated[str, pydantic.Field(alias="issuerPhone")]
|
120
|
-
r"""Phone number of the issuer."""
|
121
|
-
|
122
|
-
domestic_push_to_card: Annotated[
|
123
|
-
DomesticPushToCard, pydantic.Field(alias="domesticPushToCard")
|
124
|
-
]
|
125
|
-
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
126
|
-
|
127
|
-
domestic_pull_from_card: Annotated[
|
128
|
-
DomesticPullFromCard, pydantic.Field(alias="domesticPullFromCard")
|
129
|
-
]
|
130
|
-
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
131
|
-
|
132
110
|
card_category: Annotated[Optional[str], pydantic.Field(alias="cardCategory")] = None
|
133
111
|
r"""The category or level of the card defined by the issuer.
|
134
112
|
Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
|
@@ -137,6 +115,20 @@ class Card(BaseModel):
|
|
137
115
|
holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
|
138
116
|
r"""The name of the cardholder as it appears on the card."""
|
139
117
|
|
118
|
+
issuer: Optional[str] = None
|
119
|
+
r"""Financial institution that issued the card."""
|
120
|
+
|
121
|
+
issuer_country: Annotated[Optional[str], pydantic.Field(alias="issuerCountry")] = (
|
122
|
+
None
|
123
|
+
)
|
124
|
+
r"""Country where the card was issued."""
|
125
|
+
|
126
|
+
issuer_url: Annotated[Optional[str], pydantic.Field(alias="issuerURL")] = None
|
127
|
+
r"""URL of the issuer."""
|
128
|
+
|
129
|
+
issuer_phone: Annotated[Optional[str], pydantic.Field(alias="issuerPhone")] = None
|
130
|
+
r"""Phone number of the issuer."""
|
131
|
+
|
140
132
|
commercial: Optional[bool] = None
|
141
133
|
r"""If true, the card is for commercial use, or associated with a business.
|
142
134
|
If false, the card is associated with a general consumer.
|
@@ -159,6 +151,16 @@ class Card(BaseModel):
|
|
159
151
|
] = None
|
160
152
|
r"""The results of the most recent card update request."""
|
161
153
|
|
154
|
+
domestic_push_to_card: Annotated[
|
155
|
+
Optional[DomesticPushToCard], pydantic.Field(alias="domesticPushToCard")
|
156
|
+
] = None
|
157
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
158
|
+
|
159
|
+
domestic_pull_from_card: Annotated[
|
160
|
+
Optional[DomesticPullFromCard], pydantic.Field(alias="domesticPullFromCard")
|
161
|
+
] = None
|
162
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
163
|
+
|
162
164
|
payment_methods: Annotated[
|
163
165
|
Optional[List[BasicPaymentMethod]], pydantic.Field(alias="paymentMethods")
|
164
166
|
] = None
|
@@ -26,6 +26,8 @@ class CreateTransferTypedDict(TypedDict):
|
|
26
26
|
r"""An optional description of the transfer 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):
|
@@ -47,3 +49,8 @@ class CreateTransfer(BaseModel):
|
|
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."""
|
@@ -38,21 +38,21 @@ class PaymentMethodsCardTypedDict(TypedDict):
|
|
38
38
|
billing_address: CardAddressTypedDict
|
39
39
|
card_verification: CardVerificationTypedDict
|
40
40
|
r"""The results of submitting cardholder data to a card network for verification."""
|
41
|
-
issuer: str
|
42
|
-
r"""Financial institution that issued the card."""
|
43
|
-
issuer_country: str
|
44
|
-
r"""Country where the card was issued."""
|
45
|
-
domestic_push_to_card: DomesticPushToCard
|
46
|
-
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
47
|
-
domestic_pull_from_card: DomesticPullFromCard
|
48
|
-
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
49
41
|
holder_name: NotRequired[str]
|
50
42
|
r"""The name of the cardholder as it appears on the card."""
|
43
|
+
issuer: NotRequired[str]
|
44
|
+
r"""Financial institution that issued the card."""
|
45
|
+
issuer_country: NotRequired[str]
|
46
|
+
r"""Country where the card was issued."""
|
51
47
|
card_on_file: NotRequired[bool]
|
52
48
|
r"""Indicates cardholder has authorized card to be stored for future payments."""
|
53
49
|
merchant_account_id: NotRequired[str]
|
54
50
|
card_account_updater: NotRequired[CardAccountUpdaterTypedDict]
|
55
51
|
r"""The results of the most recent card update request."""
|
52
|
+
domestic_push_to_card: NotRequired[DomesticPushToCard]
|
53
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
54
|
+
domestic_pull_from_card: NotRequired[DomesticPullFromCard]
|
55
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
56
56
|
|
57
57
|
|
58
58
|
class PaymentMethodsCard(BaseModel):
|
@@ -89,25 +89,17 @@ class PaymentMethodsCard(BaseModel):
|
|
89
89
|
]
|
90
90
|
r"""The results of submitting cardholder data to a card network for verification."""
|
91
91
|
|
92
|
-
|
92
|
+
holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
|
93
|
+
r"""The name of the cardholder as it appears on the card."""
|
94
|
+
|
95
|
+
issuer: Optional[str] = None
|
93
96
|
r"""Financial institution that issued the card."""
|
94
97
|
|
95
|
-
issuer_country: Annotated[str, pydantic.Field(alias="issuerCountry")]
|
98
|
+
issuer_country: Annotated[Optional[str], pydantic.Field(alias="issuerCountry")] = (
|
99
|
+
None
|
100
|
+
)
|
96
101
|
r"""Country where the card was issued."""
|
97
102
|
|
98
|
-
domestic_push_to_card: Annotated[
|
99
|
-
DomesticPushToCard, pydantic.Field(alias="domesticPushToCard")
|
100
|
-
]
|
101
|
-
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
102
|
-
|
103
|
-
domestic_pull_from_card: Annotated[
|
104
|
-
DomesticPullFromCard, pydantic.Field(alias="domesticPullFromCard")
|
105
|
-
]
|
106
|
-
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
107
|
-
|
108
|
-
holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
|
109
|
-
r"""The name of the cardholder as it appears on the card."""
|
110
|
-
|
111
103
|
card_on_file: Annotated[Optional[bool], pydantic.Field(alias="cardOnFile")] = None
|
112
104
|
r"""Indicates cardholder has authorized card to be stored for future payments."""
|
113
105
|
|
@@ -119,3 +111,13 @@ class PaymentMethodsCard(BaseModel):
|
|
119
111
|
Optional[CardAccountUpdater], pydantic.Field(alias="cardAccountUpdater")
|
120
112
|
] = None
|
121
113
|
r"""The results of the most recent card update request."""
|
114
|
+
|
115
|
+
domestic_push_to_card: Annotated[
|
116
|
+
Optional[DomesticPushToCard], pydantic.Field(alias="domesticPushToCard")
|
117
|
+
] = None
|
118
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
119
|
+
|
120
|
+
domestic_pull_from_card: Annotated[
|
121
|
+
Optional[DomesticPullFromCard], pydantic.Field(alias="domesticPullFromCard")
|
122
|
+
] = None
|
123
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
@@ -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):
|
@@ -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."""
|
@@ -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/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,
|
@@ -51,6 +54,7 @@ class Transfers(BaseSDK):
|
|
51
54
|
:param facilitator_fee: Total or markup fee.
|
52
55
|
:param description: An optional description of the transfer 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
|
|
@@ -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,
|
@@ -237,6 +247,7 @@ class Transfers(BaseSDK):
|
|
237
247
|
:param facilitator_fee: Total or markup fee.
|
238
248
|
:param description: An optional description of the transfer 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
|
|
@@ -3,7 +3,7 @@ moovio_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c
|
|
3
3
|
moovio_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
4
4
|
moovio_sdk/_hooks/sdkhooks.py,sha256=2XuMgiV2N7UE7lN00Is-c3spxVWigYitXS6xSmS_Qow,2560
|
5
5
|
moovio_sdk/_hooks/types.py,sha256=xAyw_8EoIrUHL-zLoqXrogOkBq1ZFICNGZfp9xne2ww,2813
|
6
|
-
moovio_sdk/_version.py,sha256=
|
6
|
+
moovio_sdk/_version.py,sha256=IzuOrRMh4guHFjAtGdpfRbo5Se-Tam6z7mu-JPKyIto,466
|
7
7
|
moovio_sdk/accounts.py,sha256=owJJuChHd-iucAiR4JWlaMYD1oKvjzCYSO6rckje6vs,107907
|
8
8
|
moovio_sdk/adjustments.py,sha256=m7S8Vn0KB4bMaTQTX50sCPvNZr72kjA6DTLxeJ2U-fc,19272
|
9
9
|
moovio_sdk/apple_pay.py,sha256=D5agY7yrZrZEtuadtY0_oQq3bSRpTy_bUG90T0iXDck,60723
|
@@ -100,7 +100,7 @@ moovio_sdk/models/components/capability.py,sha256=iJNTQTrv6HrGemPxXZKJkSXdJ5MYVs
|
|
100
100
|
moovio_sdk/models/components/capabilityid.py,sha256=gRGE-WJDSoZpS0Cbs701TRK0oSHgXBXHn9KlrmKWn1s,636
|
101
101
|
moovio_sdk/models/components/capabilityrequirement.py,sha256=C6OpQqGmdi93uwgkc5hNQgPHDqbn-QAspGNvR0fdm5M,992
|
102
102
|
moovio_sdk/models/components/capabilitystatus.py,sha256=Wqgrj9LPmu4DMxlEPewTs30vDQeIMNDtmE5iv7OINCs,336
|
103
|
-
moovio_sdk/models/components/card.py,sha256=
|
103
|
+
moovio_sdk/models/components/card.py,sha256=kyBGS52V2gQd7ZkG9MO719Qc8ydZNIamFegRZGNt4g8,7302
|
104
104
|
moovio_sdk/models/components/cardaccountupdater.py,sha256=lJrXTINCsgvu6O5UXmeaBQv50Etld4MO4VYQWis95pk,935
|
105
105
|
moovio_sdk/models/components/cardacquiringdispute.py,sha256=7AHsB2mY6L15Sf-tfOChErFmc9gmhIry4vFATU_IYxo,688
|
106
106
|
moovio_sdk/models/components/cardacquiringmodel.py,sha256=-Falp0aLzvhEZbO1uqSzhj5GnRaor2LpYsxqQSfEIiw,281
|
@@ -153,7 +153,7 @@ moovio_sdk/models/components/createrepresentative.py,sha256=s96vpJi63rn_eoSyBpfP
|
|
153
153
|
moovio_sdk/models/components/createreversal.py,sha256=Su8LFP2dXo_84EUe54n67m7ZhMoqQCo5EYjh_987nQk,534
|
154
154
|
moovio_sdk/models/components/createsweepconfig.py,sha256=wwaBYecuKBgZhZCzhfPc47zZjixPc8zrRXr1WbeCLkI,1572
|
155
155
|
moovio_sdk/models/components/createterminalapplication.py,sha256=qFaF7CGqgsFNchG3TfIPZvY-3o_n-BG-CLsxWVyB7fE,1976
|
156
|
-
moovio_sdk/models/components/createtransfer.py,sha256=
|
156
|
+
moovio_sdk/models/components/createtransfer.py,sha256=SNkCBcwt710JQNEDVYopaQX2IArQbYQZBjbCJO_J90s,2503
|
157
157
|
moovio_sdk/models/components/createtransferdestination.py,sha256=scEOQUi5sqGHwLYCcMAj64DV_RceTKd2GylgqJIFKNQ,1268
|
158
158
|
moovio_sdk/models/components/createtransferdestinationach.py,sha256=j3oOkMzBeV3cDuk7CX3FksGo9vfyDRz8mD7r89EPSxo,1062
|
159
159
|
moovio_sdk/models/components/createtransferdestinationcard.py,sha256=0zaODvk5mxIWzMANtGaK_1whHILI7NGDkujbJwufBm4,800
|
@@ -281,7 +281,7 @@ moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=c6xXDinJR_
|
|
281
281
|
moovio_sdk/models/components/paymentlinkstatus.py,sha256=msrQMJyTpPfxsiY_jlYLUjfozjTUqD1er-UJ3bmFMiw,258
|
282
282
|
moovio_sdk/models/components/paymentmethod.py,sha256=0Y5Dw43hTWrT3md6TYLWw71UaqgXx-FoGDkC2yRNQaM,3106
|
283
283
|
moovio_sdk/models/components/paymentmethodsbankaccount.py,sha256=hFtw7jmbaMqyhqWV1lv7lsU-jPxtZHC8TB8lQRMMO7M,2160
|
284
|
-
moovio_sdk/models/components/paymentmethodscard.py,sha256=
|
284
|
+
moovio_sdk/models/components/paymentmethodscard.py,sha256=TaC-4I1GI-ZYeu79vrQB0BiLjUjkrE5RhESYu4Ou1Ww,5233
|
285
285
|
moovio_sdk/models/components/paymentmethodswallet.py,sha256=j-MNQmjwCiS29UbMCoeR8JTH981oicIeCFaZfzP4UTI,388
|
286
286
|
moovio_sdk/models/components/paymentmethodtype.py,sha256=fix1w2wY7-xoKQH5wYb0kbMeNlg5gM3GGqCpiYJHvi4,678
|
287
287
|
moovio_sdk/models/components/payoutdetailserror.py,sha256=UkRP7L99TiPkNcIEGEhR8HJbLeTPhOHRSDTGu3i92uM,685
|
@@ -351,7 +351,7 @@ moovio_sdk/models/components/termsofservicetoken.py,sha256=VF0w2YMAJiqyz9INBhb_M
|
|
351
351
|
moovio_sdk/models/components/termsofservicetokenupdate.py,sha256=Uc1zc1ItdU9D-z8aOYl4S6tkXi6lMzEYiz_xXQzIKBM,559
|
352
352
|
moovio_sdk/models/components/tokentype.py,sha256=vPgHYR7el4ertQG3I5a8OTHknyBv3Fww-JKbWzApvsw,272
|
353
353
|
moovio_sdk/models/components/transactionsource.py,sha256=9zZa2lvqld19YeO0u0Vjqq2HfKRDkqGD9zNL6jNmBoA,484
|
354
|
-
moovio_sdk/models/components/transfer.py,sha256=
|
354
|
+
moovio_sdk/models/components/transfer.py,sha256=8uDkc54PjrpqdNeC-EtJRotfmtz7HGvnGyYQeND5eAE,5325
|
355
355
|
moovio_sdk/models/components/transferaccount.py,sha256=-gIji284RTf4FI8BUomUHEMVm1h6cae9d4a7tGWxL6c,505
|
356
356
|
moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30sid-1Inq4L0VoCaxvUkIhc,3389
|
357
357
|
moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
|
@@ -414,7 +414,7 @@ moovio_sdk/models/errors/reversalvalidationerror.py,sha256=s5rOORHo7UIWb67hOsm3Y
|
|
414
414
|
moovio_sdk/models/errors/revoketokenrequesterror.py,sha256=bkU4hh6nzuCr6pF9CvcW9tP9BBufWpQnaVe8W3ZzJy8,599
|
415
415
|
moovio_sdk/models/errors/schedulevalidationerror.py,sha256=ca8VYtFOcN8Su1cOYclEIXlDQWGZVbvWwRcUEPU6mQA,651
|
416
416
|
moovio_sdk/models/errors/terminalapplicationerror.py,sha256=mCl6UPQ2RGCeQ-Mqd0WfSZRC4xO0-36ZvqIt0pi1dIc,975
|
417
|
-
moovio_sdk/models/errors/transfer.py,sha256=
|
417
|
+
moovio_sdk/models/errors/transfer.py,sha256=s0xZYGsi_NxQQ9UJrPxMz0J_sTTeALqODODEQZ6KDpY,4045
|
418
418
|
moovio_sdk/models/errors/transferoptionsvalidationerror.py,sha256=X9NCkEUJfoonyhY82EwKiC-fObGZGiZn-tWe7DfxdWg,665
|
419
419
|
moovio_sdk/models/errors/transfervalidationerror.py,sha256=Puvl57i9_mK-AaZExReYAsxl156p3i4K-ycuiFygPgA,1471
|
420
420
|
moovio_sdk/models/errors/updateaccount.py,sha256=tIAS1AIFxhfhyvxCPRF_9QF3sm576QORtIUYJ4Yvmac,790
|
@@ -570,7 +570,7 @@ moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-
|
|
570
570
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
571
571
|
moovio_sdk/terminal_applications.py,sha256=MJVg8ikMsL8Pb90-7Tgmv-qKivpuom7nH_N2wy8L9H0,42822
|
572
572
|
moovio_sdk/terminal_configurations.py,sha256=6gqd2Syq1cHSFarTLRFwpzPfm06mK90T53wI594BhGw,10205
|
573
|
-
moovio_sdk/transfers.py,sha256=
|
573
|
+
moovio_sdk/transfers.py,sha256=Gimg_Hn6RcJ7iJE6vE07M8af21rEooZK_BXP5ovCNKg,132552
|
574
574
|
moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
575
575
|
moovio_sdk/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
|
576
576
|
moovio_sdk/underwriting.py,sha256=Q3bOkxgz3syy6YgdTKK_DTAqK6lV_uawgVZZX3iPuqc,24353
|
@@ -591,6 +591,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
591
591
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
592
592
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
593
593
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
594
|
-
moovio_sdk-0.3.
|
595
|
-
moovio_sdk-0.3.
|
596
|
-
moovio_sdk-0.3.
|
594
|
+
moovio_sdk-0.3.19.dist-info/METADATA,sha256=1NSbaCC8tk7Avxt4kv09SXvHyUE4OeIbVQDbJBi8C8U,104253
|
595
|
+
moovio_sdk-0.3.19.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
596
|
+
moovio_sdk-0.3.19.dist-info/RECORD,,
|
File without changes
|