moovio_sdk 0.3.13__py3-none-any.whl → 0.3.15__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/__init__.py +3 -0
- moovio_sdk/models/components/createtransfersource.py +3 -0
- moovio_sdk/models/components/feeplan.py +8 -0
- moovio_sdk/models/components/feeplanagreement.py +8 -0
- moovio_sdk/models/components/monthlyplatformfee.py +31 -0
- moovio_sdk/models/components/partnerpricing.py +8 -0
- moovio_sdk/models/components/partnerpricingagreement.py +8 -0
- moovio_sdk/models/components/transfersource.py +8 -0
- moovio_sdk/models/components/wallettransactionsourcetype.py +1 -0
- {moovio_sdk-0.3.13.dist-info → moovio_sdk-0.3.15.dist-info}/METADATA +1 -1
- {moovio_sdk-0.3.13.dist-info → moovio_sdk-0.3.15.dist-info}/RECORD +13 -12
- {moovio_sdk-0.3.13.dist-info → moovio_sdk-0.3.15.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.15"
|
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.558.5"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.15 2.558.5 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -420,6 +420,7 @@ from .manualtermsofserviceupdate import (
|
|
420
420
|
from .microdepositstatus import MicroDepositStatus
|
421
421
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
422
422
|
from .mode import Mode
|
423
|
+
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
423
424
|
from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
|
424
425
|
from .moovwalletpaymentmethod import (
|
425
426
|
MoovWalletPaymentMethod,
|
@@ -1154,6 +1155,8 @@ __all__ = [
|
|
1154
1155
|
"MinimumCommitment",
|
1155
1156
|
"MinimumCommitmentTypedDict",
|
1156
1157
|
"Mode",
|
1158
|
+
"MonthlyPlatformFee",
|
1159
|
+
"MonthlyPlatformFeeTypedDict",
|
1157
1160
|
"MoovFeeDetails",
|
1158
1161
|
"MoovFeeDetailsTypedDict",
|
1159
1162
|
"MoovWalletPaymentMethod",
|
@@ -23,6 +23,7 @@ class CreateTransferSourceTypedDict(TypedDict):
|
|
23
23
|
associating the new transfer with a parent transfer.
|
24
24
|
"""
|
25
25
|
payment_method_id: NotRequired[str]
|
26
|
+
payment_token: NotRequired[str]
|
26
27
|
card_details: NotRequired[CreateTransferSourceCardTypedDict]
|
27
28
|
ach_details: NotRequired[CreateTransferSourceACHTypedDict]
|
28
29
|
|
@@ -39,6 +40,8 @@ class CreateTransferSource(BaseModel):
|
|
39
40
|
Optional[str], pydantic.Field(alias="paymentMethodID")
|
40
41
|
] = None
|
41
42
|
|
43
|
+
payment_token: Annotated[Optional[str], pydantic.Field(alias="paymentToken")] = None
|
44
|
+
|
42
45
|
card_details: Annotated[
|
43
46
|
Optional[CreateTransferSourceCard], pydantic.Field(alias="cardDetails")
|
44
47
|
] = None
|
@@ -4,6 +4,7 @@ from __future__ import annotations
|
|
4
4
|
from .billablefee import BillableFee, BillableFeeTypedDict
|
5
5
|
from .cardacquiringmodel import CardAcquiringModel
|
6
6
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
7
|
+
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
7
8
|
from datetime import datetime
|
8
9
|
from moovio_sdk.types import BaseModel
|
9
10
|
import pydantic
|
@@ -21,6 +22,8 @@ class FeePlanTypedDict(TypedDict):
|
|
21
22
|
r"""Additional usage-based fees for this plan."""
|
22
23
|
minimum_commitment: MinimumCommitmentTypedDict
|
23
24
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
25
|
+
monthly_platform_fee: MonthlyPlatformFeeTypedDict
|
26
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
24
27
|
created_at: datetime
|
25
28
|
description: NotRequired[str]
|
26
29
|
r"""A description of the fee plan."""
|
@@ -45,6 +48,11 @@ class FeePlan(BaseModel):
|
|
45
48
|
]
|
46
49
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
47
50
|
|
51
|
+
monthly_platform_fee: Annotated[
|
52
|
+
MonthlyPlatformFee, pydantic.Field(alias="monthlyPlatformFee")
|
53
|
+
]
|
54
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
55
|
+
|
48
56
|
created_at: Annotated[datetime, pydantic.Field(alias="createdAt")]
|
49
57
|
|
50
58
|
description: Optional[str] = None
|
@@ -5,6 +5,7 @@ from .billablefee import BillableFee, BillableFeeTypedDict
|
|
5
5
|
from .cardacquiringmodel import CardAcquiringModel
|
6
6
|
from .feeplanagreementstatus import FeePlanAgreementStatus
|
7
7
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
8
|
+
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
8
9
|
from datetime import datetime
|
9
10
|
from moovio_sdk.types import BaseModel
|
10
11
|
import pydantic
|
@@ -24,6 +25,8 @@ class FeePlanAgreementTypedDict(TypedDict):
|
|
24
25
|
billable_fees: List[BillableFeeTypedDict]
|
25
26
|
minimum_commitment: MinimumCommitmentTypedDict
|
26
27
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
28
|
+
monthly_platform_fee: MonthlyPlatformFeeTypedDict
|
29
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
27
30
|
account_id: NotRequired[str]
|
28
31
|
description: NotRequired[str]
|
29
32
|
r"""The description of the agreement."""
|
@@ -53,6 +56,11 @@ class FeePlanAgreement(BaseModel):
|
|
53
56
|
]
|
54
57
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
55
58
|
|
59
|
+
monthly_platform_fee: Annotated[
|
60
|
+
MonthlyPlatformFee, pydantic.Field(alias="monthlyPlatformFee")
|
61
|
+
]
|
62
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
63
|
+
|
56
64
|
account_id: Annotated[Optional[str], pydantic.Field(alias="accountID")] = None
|
57
65
|
|
58
66
|
description: Optional[str] = None
|
@@ -0,0 +1,31 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.types import BaseModel
|
5
|
+
import pydantic
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class MonthlyPlatformFeeTypedDict(TypedDict):
|
10
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
11
|
+
|
12
|
+
currency: str
|
13
|
+
r"""A 3-letter ISO 4217 currency code."""
|
14
|
+
value_decimal: str
|
15
|
+
r"""A decimal-formatted numerical string that represents up to 9 decimal place precision.
|
16
|
+
|
17
|
+
For example, $12.987654321 is '12.987654321'.
|
18
|
+
"""
|
19
|
+
|
20
|
+
|
21
|
+
class MonthlyPlatformFee(BaseModel):
|
22
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
23
|
+
|
24
|
+
currency: str
|
25
|
+
r"""A 3-letter ISO 4217 currency code."""
|
26
|
+
|
27
|
+
value_decimal: Annotated[str, pydantic.Field(alias="valueDecimal")]
|
28
|
+
r"""A decimal-formatted numerical string that represents up to 9 decimal place precision.
|
29
|
+
|
30
|
+
For example, $12.987654321 is '12.987654321'.
|
31
|
+
"""
|
@@ -4,6 +4,7 @@ from __future__ import annotations
|
|
4
4
|
from .billablefee import BillableFee, BillableFeeTypedDict
|
5
5
|
from .cardacquiringmodel import CardAcquiringModel
|
6
6
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
7
|
+
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
7
8
|
from datetime import datetime
|
8
9
|
from moovio_sdk.types import BaseModel
|
9
10
|
import pydantic
|
@@ -22,6 +23,8 @@ class PartnerPricingTypedDict(TypedDict):
|
|
22
23
|
billable_fees: List[BillableFeeTypedDict]
|
23
24
|
minimum_commitment: MinimumCommitmentTypedDict
|
24
25
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
26
|
+
monthly_platform_fee: MonthlyPlatformFeeTypedDict
|
27
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
25
28
|
created_at: datetime
|
26
29
|
description: NotRequired[str]
|
27
30
|
r"""A description of the fee plan."""
|
@@ -48,6 +51,11 @@ class PartnerPricing(BaseModel):
|
|
48
51
|
]
|
49
52
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
50
53
|
|
54
|
+
monthly_platform_fee: Annotated[
|
55
|
+
MonthlyPlatformFee, pydantic.Field(alias="monthlyPlatformFee")
|
56
|
+
]
|
57
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
58
|
+
|
51
59
|
created_at: Annotated[datetime, pydantic.Field(alias="createdAt")]
|
52
60
|
|
53
61
|
description: Optional[str] = None
|
@@ -5,6 +5,7 @@ from .billablefee import BillableFee, BillableFeeTypedDict
|
|
5
5
|
from .cardacquiringmodel import CardAcquiringModel
|
6
6
|
from .feeplanagreementstatus import FeePlanAgreementStatus
|
7
7
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
8
|
+
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
8
9
|
from datetime import datetime
|
9
10
|
from moovio_sdk.types import BaseModel
|
10
11
|
import pydantic
|
@@ -24,6 +25,8 @@ class PartnerPricingAgreementTypedDict(TypedDict):
|
|
24
25
|
billable_fees: List[BillableFeeTypedDict]
|
25
26
|
minimum_commitment: MinimumCommitmentTypedDict
|
26
27
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
28
|
+
monthly_platform_fee: MonthlyPlatformFeeTypedDict
|
29
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
27
30
|
revenue_share: int
|
28
31
|
r"""The integer percentage value of the revenue split for partner."""
|
29
32
|
account_id: NotRequired[str]
|
@@ -55,6 +58,11 @@ class PartnerPricingAgreement(BaseModel):
|
|
55
58
|
]
|
56
59
|
r"""The minimum spending amount that must be met in the billing period. If actual usage is below the minimum amount, account is charged the difference."""
|
57
60
|
|
61
|
+
monthly_platform_fee: Annotated[
|
62
|
+
MonthlyPlatformFee, pydantic.Field(alias="monthlyPlatformFee")
|
63
|
+
]
|
64
|
+
r"""Fixed recurring amount paid in the billing period regardless of usage."""
|
65
|
+
|
58
66
|
revenue_share: Annotated[int, pydantic.Field(alias="revenueShare")]
|
59
67
|
r"""The integer percentage value of the revenue split for partner."""
|
60
68
|
|
@@ -14,6 +14,7 @@ from .paymentmethodsbankaccount import (
|
|
14
14
|
from .paymentmethodscard import PaymentMethodsCard, PaymentMethodsCardTypedDict
|
15
15
|
from .paymentmethodswallet import PaymentMethodsWallet, PaymentMethodsWalletTypedDict
|
16
16
|
from .paymentmethodtype import PaymentMethodType
|
17
|
+
from .terminalcard import TerminalCard, TerminalCardTypedDict
|
17
18
|
from .transferaccount import TransferAccount, TransferAccountTypedDict
|
18
19
|
from moovio_sdk.types import BaseModel
|
19
20
|
import pydantic
|
@@ -35,6 +36,8 @@ class TransferSourceTypedDict(TypedDict):
|
|
35
36
|
r"""A card as contained within a payment method."""
|
36
37
|
apple_pay: NotRequired[ApplePayResponseTypedDict]
|
37
38
|
r"""Describes an Apple Pay token on a Moov account."""
|
39
|
+
terminal_card: NotRequired[TerminalCardTypedDict]
|
40
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
38
41
|
card_details: NotRequired[CardTransactionDetailsTypedDict]
|
39
42
|
r"""Card-specific details about the transaction."""
|
40
43
|
ach_details: NotRequired[ACHTransactionDetailsTypedDict]
|
@@ -69,6 +72,11 @@ class TransferSource(BaseModel):
|
|
69
72
|
] = None
|
70
73
|
r"""Describes an Apple Pay token on a Moov account."""
|
71
74
|
|
75
|
+
terminal_card: Annotated[
|
76
|
+
Optional[TerminalCard], pydantic.Field(alias="terminalCard")
|
77
|
+
] = None
|
78
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
79
|
+
|
72
80
|
card_details: Annotated[
|
73
81
|
Optional[CardTransactionDetails], pydantic.Field(alias="cardDetails")
|
74
82
|
] = None
|
@@ -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=wzwxw5W2HWwKe_eM9IrflE2GSGCw8TRI0m7BDlKmaJs,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
|
@@ -26,7 +26,7 @@ moovio_sdk/industries.py,sha256=7VputoHEST4GXazczXDWEYsSkfWkFJaTSXAEDx267Vo,1024
|
|
26
26
|
moovio_sdk/institutions.py,sha256=1CjxrmzYf0tAs2beUyYiVPO9w8jibwG-Ya9ifXifUG8,11238
|
27
27
|
moovio_sdk/issuing_transactions.py,sha256=ftaJUPR8vGuNVOf3oWgecZG7DQSYRZiHZTtRfXMacgc,53212
|
28
28
|
moovio_sdk/models/__init__.py,sha256=HRiFG5CV9y2HvWWQl_JQNbYTPme0UYR1Mhh13Qc-5jE,84
|
29
|
-
moovio_sdk/models/components/__init__.py,sha256=
|
29
|
+
moovio_sdk/models/components/__init__.py,sha256=g_1jdYnX3ZkZipO21OHH6O4WDDYQaBMZ6DkCDXfukJM,51748
|
30
30
|
moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
|
31
31
|
moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
|
32
32
|
moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
|
@@ -158,7 +158,7 @@ moovio_sdk/models/components/createtransferdestination.py,sha256=scEOQUi5sqGHwLY
|
|
158
158
|
moovio_sdk/models/components/createtransferdestinationach.py,sha256=j3oOkMzBeV3cDuk7CX3FksGo9vfyDRz8mD7r89EPSxo,1062
|
159
159
|
moovio_sdk/models/components/createtransferdestinationcard.py,sha256=0zaODvk5mxIWzMANtGaK_1whHILI7NGDkujbJwufBm4,800
|
160
160
|
moovio_sdk/models/components/createtransferoptions.py,sha256=_yzV9xGWwP-Jg3PMCpwGl8hXDCBNufOvxcVPXjfrNws,660
|
161
|
-
moovio_sdk/models/components/createtransfersource.py,sha256=
|
161
|
+
moovio_sdk/models/components/createtransfersource.py,sha256=OJNAAAYZiZqKuqvCQ_lmADHPuDhigmm99EwyQjmUIy4,1964
|
162
162
|
moovio_sdk/models/components/createtransfersourceach.py,sha256=7WeF6YEoEvC-Dfn4mNTw9up_ZmoUg_QXCWhs-_ayEdg,1848
|
163
163
|
moovio_sdk/models/components/createtransfersourcecard.py,sha256=hCUSzjPw6NyPLMEnSLjVGbMqhrSk55hwBU4PE7YD2Lc,1452
|
164
164
|
moovio_sdk/models/components/customersupport.py,sha256=VzZ7vBAKZC9q9KDDCXuH8EenEFiu3bGiOuCAvcHfHYE,1124
|
@@ -191,8 +191,8 @@ moovio_sdk/models/components/evidenceuploadresponse.py,sha256=tCxjtueEl1URQjNTE2
|
|
191
191
|
moovio_sdk/models/components/facilitatorfee.py,sha256=uDMPXHogxp5lpRjeLK4QlgoXSRo35cYfqxo0NVzO2A0,2156
|
192
192
|
moovio_sdk/models/components/feecategory.py,sha256=9OBQNnE7O8c_i_8eyvbbkl_MfdgwmHeYZ9_36uooCrU,428
|
193
193
|
moovio_sdk/models/components/feemodel.py,sha256=M98YekU7JfnwG613Zi6SJE9hcUBIHiqMObgi30rUoxM,312
|
194
|
-
moovio_sdk/models/components/feeplan.py,sha256=
|
195
|
-
moovio_sdk/models/components/feeplanagreement.py,sha256=
|
194
|
+
moovio_sdk/models/components/feeplan.py,sha256=0WIFfE3jd8CupBAi-66bjUN10f1vEv6e_9_uv6bKl5c,2381
|
195
|
+
moovio_sdk/models/components/feeplanagreement.py,sha256=JI_xx9o8rkYRT9GkjnAxJemFwXliPYXoqmZ68yT0U8k,2642
|
196
196
|
moovio_sdk/models/components/feeplanagreementstatus.py,sha256=D7q_iy4vh1Xaex6BwftVoKmV2BGdEhPm8FtFCTR1jHQ,225
|
197
197
|
moovio_sdk/models/components/feeproperties.py,sha256=Ajpyc7ggfsVDXcuhv4SmvtJTyM2K7eRvZs15__142uU,2212
|
198
198
|
moovio_sdk/models/components/filedetails.py,sha256=qVMztRp46CEWFAdhISAWZXqv435UKQyzHc5-Rae5KGw,1601
|
@@ -248,6 +248,7 @@ moovio_sdk/models/components/manualtermsofserviceupdate.py,sha256=2t7FmphN0N7f-7
|
|
248
248
|
moovio_sdk/models/components/microdepositstatus.py,sha256=OSMp_6IBIo5frPWZOFiXlwcVA9akxke9FW63GvWE3fA,195
|
249
249
|
moovio_sdk/models/components/minimumcommitment.py,sha256=KDiqCre5Ol2yhZARTCaV-rueQk549fG4QK8jR0gRjQg,1149
|
250
250
|
moovio_sdk/models/components/mode.py,sha256=U7TBdxrtdKN2iA3PPva_gfiBXdg6tMUVpyNPA3HA_IA,256
|
251
|
+
moovio_sdk/models/components/monthlyplatformfee.py,sha256=WRGXX_vic_E9GXslX67Suk5_vZNV1Rh-4qVEUjHJ_oY,997
|
251
252
|
moovio_sdk/models/components/moovfeedetails.py,sha256=GovSQFW4mExyx_jW5VY8nIK0ezSebPnguLoH2xgzO0o,1853
|
252
253
|
moovio_sdk/models/components/moovwalletpaymentmethod.py,sha256=_FmIK5xllEX3B6YjYdpvQj61n5Src8ZRmsWcmUAxfcs,978
|
253
254
|
moovio_sdk/models/components/mxauthorizationcode.py,sha256=Ul5g0X0RO6hIbDHfOwm-Q04q853RQ0DToeryeMPuG8k,1107
|
@@ -259,8 +260,8 @@ moovio_sdk/models/components/onboardinginvite.py,sha256=0JnZR0c6I-lmGo1OvSJakBGJ
|
|
259
260
|
moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtIPX3jrYVfJQrHKEQZ3YFPT21aAM,2578
|
260
261
|
moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
|
261
262
|
moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
|
262
|
-
moovio_sdk/models/components/partnerpricing.py,sha256=
|
263
|
-
moovio_sdk/models/components/partnerpricingagreement.py,sha256=
|
263
|
+
moovio_sdk/models/components/partnerpricing.py,sha256=XH8XCRTML7AyygqRtLqF-QedIsgB8vKBSLANmR2iEE8,2531
|
264
|
+
moovio_sdk/models/components/partnerpricingagreement.py,sha256=bh3DknfJcKHKyP3cCvNNmOSbxHKgpiVRhEhcenNPcLY,2900
|
264
265
|
moovio_sdk/models/components/patchaccount.py,sha256=9JhHL190PwO9HAVc4maUv5iNX-tU7wtwIFkc5B2-2Wo,4518
|
265
266
|
moovio_sdk/models/components/patchaccounterror.py,sha256=68urJQxtMBlvzimAQcj8BR7NX-q140Jj15WVq5NCY30,1458
|
266
267
|
moovio_sdk/models/components/patchbusiness.py,sha256=MXhweZYmjmbXJ5PF9-eiue2R2DP-zI2qeFQWoO0kBLI,2700
|
@@ -355,7 +356,7 @@ moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30
|
|
355
356
|
moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
|
356
357
|
moovio_sdk/models/components/transferoptions.py,sha256=7BEWfTTzxMR-5rcrwLDfMVf7IQ1XSQxU_WL7mYtHTNs,789
|
357
358
|
moovio_sdk/models/components/transferresponse.py,sha256=RfFQUsFEY6l5Rk0DjgBf09IQ9PdHgn4NSXf1AMmrvaM,508
|
358
|
-
moovio_sdk/models/components/transfersource.py,sha256=
|
359
|
+
moovio_sdk/models/components/transfersource.py,sha256=ZpdfQGsPS8k_MPaYMIi-6AxvdZs1wbJ-xi7UeA43ST0,3662
|
359
360
|
moovio_sdk/models/components/transferstatus.py,sha256=rw0RiqIZ2N0fhu3f7WKeJ919EBtFvYUQ0h4YbRx9XD4,371
|
360
361
|
moovio_sdk/models/components/transferwaitfor.py,sha256=rdjiNuV5J78oqxQ6v954xNnOwcyhmh9Mgo7YCrBUoXA,202
|
361
362
|
moovio_sdk/models/components/underwriting.py,sha256=1_wdBNjNrX-6tNNr7F-nxd1M8-jk5bxnWIgq_j6CCtI,1929
|
@@ -381,7 +382,7 @@ moovio_sdk/models/components/volumebycustomertypeerror.py,sha256=zted3iTK3pbCdIR
|
|
381
382
|
moovio_sdk/models/components/wallet.py,sha256=CVYmfx3s69Ror_tjt60x6WOZABiltODednfdX4mdLdc,746
|
382
383
|
moovio_sdk/models/components/walletavailablebalance.py,sha256=belUWnDIVDHGwkuuv8sh-ZIjkxqZwRz8BU7CzcjUJ1o,854
|
383
384
|
moovio_sdk/models/components/wallettransaction.py,sha256=oVx_Vtmw0UmSGk_Mdw_DeFpygp7Vva0iP9jyml0FnzY,6940
|
384
|
-
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=
|
385
|
+
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=Mh549qh9Sbr1QPOHZdyJAjhbdlcTP6uZS3ygHdALx5E,404
|
385
386
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
386
387
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=EiiCvg2dF1cYIIZ-5E-zzsrlJzr9rGL-le6Iz8kTD8w,1058
|
387
388
|
moovio_sdk/models/errors/__init__.py,sha256=5En0_541JISy02CkiycaHwMubpf4DKlBcpvjR_o-tlQ,5530
|
@@ -587,6 +588,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
587
588
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
588
589
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
589
590
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
590
|
-
moovio_sdk-0.3.
|
591
|
-
moovio_sdk-0.3.
|
592
|
-
moovio_sdk-0.3.
|
591
|
+
moovio_sdk-0.3.15.dist-info/METADATA,sha256=um21WnKkWRKvSDgceK_UDryQ_6zQpOsP9qiXL6KcVK8,103756
|
592
|
+
moovio_sdk-0.3.15.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
593
|
+
moovio_sdk-0.3.15.dist-info/RECORD,,
|
File without changes
|