moovio_sdk 0.3.12__py3-none-any.whl → 0.3.14__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 CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.3.12"
6
+ __version__: str = "0.3.14"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.548.6"
9
- __user_agent__: str = "speakeasy-sdk/python 0.3.12 2.548.6 latest moovio_sdk"
8
+ __gen_version__: str = "2.552.1"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.3.14 2.552.1 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -418,6 +418,7 @@ from .manualtermsofserviceupdate import (
418
418
  ManualTermsOfServiceUpdateTypedDict,
419
419
  )
420
420
  from .microdepositstatus import MicroDepositStatus
421
+ from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
421
422
  from .mode import Mode
422
423
  from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
423
424
  from .moovwalletpaymentmethod import (
@@ -1150,6 +1151,8 @@ __all__ = [
1150
1151
  "ManualTermsOfServiceUpdateTypedDict",
1151
1152
  "ManualTypedDict",
1152
1153
  "MicroDepositStatus",
1154
+ "MinimumCommitment",
1155
+ "MinimumCommitmentTypedDict",
1153
1156
  "Mode",
1154
1157
  "MoovFeeDetails",
1155
1158
  "MoovFeeDetailsTypedDict",
@@ -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
@@ -3,6 +3,7 @@
3
3
  from __future__ import annotations
4
4
  from .billablefee import BillableFee, BillableFeeTypedDict
5
5
  from .cardacquiringmodel import CardAcquiringModel
6
+ from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
6
7
  from datetime import datetime
7
8
  from moovio_sdk.types import BaseModel
8
9
  import pydantic
@@ -18,6 +19,8 @@ class FeePlanTypedDict(TypedDict):
18
19
  r"""Specifies the card processing pricing model"""
19
20
  billable_fees: List[BillableFeeTypedDict]
20
21
  r"""Additional usage-based fees for this plan."""
22
+ minimum_commitment: MinimumCommitmentTypedDict
23
+ 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."""
21
24
  created_at: datetime
22
25
  description: NotRequired[str]
23
26
  r"""A description of the fee plan."""
@@ -37,6 +40,11 @@ class FeePlan(BaseModel):
37
40
  billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
38
41
  r"""Additional usage-based fees for this plan."""
39
42
 
43
+ minimum_commitment: Annotated[
44
+ MinimumCommitment, pydantic.Field(alias="minimumCommitment")
45
+ ]
46
+ 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
+
40
48
  created_at: Annotated[datetime, pydantic.Field(alias="createdAt")]
41
49
 
42
50
  description: Optional[str] = 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 .feeplanagreementstatus import FeePlanAgreementStatus
7
+ from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
7
8
  from datetime import datetime
8
9
  from moovio_sdk.types import BaseModel
9
10
  import pydantic
@@ -21,6 +22,8 @@ class FeePlanAgreementTypedDict(TypedDict):
21
22
  card_acquiring_model: CardAcquiringModel
22
23
  r"""Specifies the card processing pricing model"""
23
24
  billable_fees: List[BillableFeeTypedDict]
25
+ minimum_commitment: MinimumCommitmentTypedDict
26
+ 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."""
24
27
  account_id: NotRequired[str]
25
28
  description: NotRequired[str]
26
29
  r"""The description of the agreement."""
@@ -45,6 +48,11 @@ class FeePlanAgreement(BaseModel):
45
48
 
46
49
  billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
47
50
 
51
+ minimum_commitment: Annotated[
52
+ MinimumCommitment, pydantic.Field(alias="minimumCommitment")
53
+ ]
54
+ 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
+
48
56
  account_id: Annotated[Optional[str], pydantic.Field(alias="accountID")] = None
49
57
 
50
58
  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 MinimumCommitmentTypedDict(TypedDict):
10
+ 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."""
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 MinimumCommitment(BaseModel):
22
+ 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."""
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
+ """
@@ -3,6 +3,7 @@
3
3
  from __future__ import annotations
4
4
  from .billablefee import BillableFee, BillableFeeTypedDict
5
5
  from .cardacquiringmodel import CardAcquiringModel
6
+ from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
6
7
  from datetime import datetime
7
8
  from moovio_sdk.types import BaseModel
8
9
  import pydantic
@@ -19,6 +20,8 @@ class PartnerPricingTypedDict(TypedDict):
19
20
  card_acquiring_model: CardAcquiringModel
20
21
  r"""Specifies the card processing pricing model"""
21
22
  billable_fees: List[BillableFeeTypedDict]
23
+ minimum_commitment: MinimumCommitmentTypedDict
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."""
22
25
  created_at: datetime
23
26
  description: NotRequired[str]
24
27
  r"""A description of the fee plan."""
@@ -40,6 +43,11 @@ class PartnerPricing(BaseModel):
40
43
 
41
44
  billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
42
45
 
46
+ minimum_commitment: Annotated[
47
+ MinimumCommitment, pydantic.Field(alias="minimumCommitment")
48
+ ]
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."""
50
+
43
51
  created_at: Annotated[datetime, pydantic.Field(alias="createdAt")]
44
52
 
45
53
  description: Optional[str] = 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 .feeplanagreementstatus import FeePlanAgreementStatus
7
+ from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
7
8
  from datetime import datetime
8
9
  from moovio_sdk.types import BaseModel
9
10
  import pydantic
@@ -21,6 +22,8 @@ class PartnerPricingAgreementTypedDict(TypedDict):
21
22
  card_acquiring_model: CardAcquiringModel
22
23
  r"""Specifies the card processing pricing model"""
23
24
  billable_fees: List[BillableFeeTypedDict]
25
+ minimum_commitment: MinimumCommitmentTypedDict
26
+ 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."""
24
27
  revenue_share: int
25
28
  r"""The integer percentage value of the revenue split for partner."""
26
29
  account_id: NotRequired[str]
@@ -47,6 +50,11 @@ class PartnerPricingAgreement(BaseModel):
47
50
 
48
51
  billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
49
52
 
53
+ minimum_commitment: Annotated[
54
+ MinimumCommitment, pydantic.Field(alias="minimumCommitment")
55
+ ]
56
+ 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
+
50
58
  revenue_share: Annotated[int, pydantic.Field(alias="revenueShare")]
51
59
  r"""The integer percentage value of the revenue split for partner."""
52
60
 
@@ -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
@@ -11,3 +11,4 @@ class WalletTransactionSourceType(str, Enum):
11
11
  ISSUING_AUTHORIZATION = "issuing-authorization"
12
12
  SWEEP = "sweep"
13
13
  ADJUSTMENT = "adjustment"
14
+ FEE = "fee"
moovio_sdk/receipts.py CHANGED
@@ -103,7 +103,7 @@ class Receipts(BaseSDK):
103
103
  )
104
104
 
105
105
  response_data: Any = None
106
- if utils.match_response(http_res, "200", "application/json"):
106
+ if utils.match_response(http_res, "201", "application/json"):
107
107
  return operations.CreateReceiptsResponse(
108
108
  result=utils.unmarshal_json(http_res.text, components.ReceiptResponse),
109
109
  headers=utils.get_response_headers(http_res.headers),
@@ -239,7 +239,7 @@ class Receipts(BaseSDK):
239
239
  )
240
240
 
241
241
  response_data: Any = None
242
- if utils.match_response(http_res, "200", "application/json"):
242
+ if utils.match_response(http_res, "201", "application/json"):
243
243
  return operations.CreateReceiptsResponse(
244
244
  result=utils.unmarshal_json(http_res.text, components.ReceiptResponse),
245
245
  headers=utils.get_response_headers(http_res.headers),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.3.12
3
+ Version: 0.3.14
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -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=8z34ScVRuLcx3JMoRhZFq0FM2_7MAlQmQwnFE6hg9mo,466
6
+ moovio_sdk/_version.py,sha256=dWvGjm0hgSI54sdKns4k9TUkozxWpvWx9T-qUP5eYUI,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=izJQMn75VAYGQ7HiiuwOnGCNZuns6sQjkc12giMtvmg,51471
29
+ moovio_sdk/models/components/__init__.py,sha256=jpRRsy24sscAov4Il_OTDa1SHtOFqZBYgUaZgPij_hA,51607
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=rVCUgfP-KB62cxeKrJsWxpzYYmodu-CmynYrPGp64Bw,1838
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=ZzSaYav-pbadpZhxMcsPvzVuJGBpvRXYC2sBSm_XUOY,1411
195
- moovio_sdk/models/components/feeplanagreement.py,sha256=CnapjjriQE8E8VYrTs4iQfJRQUfMAgXU9MlvxlzsEz0,1672
194
+ moovio_sdk/models/components/feeplan.py,sha256=x4oTkJsNp_quTHgjTmpgGBFZ_BfnMm1jmNborUs_qGs,1968
195
+ moovio_sdk/models/components/feeplanagreement.py,sha256=WizD6vvte6HM2cLroC2QsW9ZfzB1M7aKWaHNHvP8yqk,2229
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
@@ -246,6 +246,7 @@ moovio_sdk/models/components/listfeesfetchrequest.py,sha256=YcNhPmj4V7mCXRtDle2O
246
246
  moovio_sdk/models/components/manualtermsofservice.py,sha256=6VhtD04HT-AusbFhJG1SitFpgCMhtIw2WTzFhAWizbs,1359
247
247
  moovio_sdk/models/components/manualtermsofserviceupdate.py,sha256=2t7FmphN0N7f-7VCp0TGc7egYvdFrS_RINrFUMUWmtA,1574
248
248
  moovio_sdk/models/components/microdepositstatus.py,sha256=OSMp_6IBIo5frPWZOFiXlwcVA9akxke9FW63GvWE3fA,195
249
+ moovio_sdk/models/components/minimumcommitment.py,sha256=KDiqCre5Ol2yhZARTCaV-rueQk549fG4QK8jR0gRjQg,1149
249
250
  moovio_sdk/models/components/mode.py,sha256=U7TBdxrtdKN2iA3PPva_gfiBXdg6tMUVpyNPA3HA_IA,256
250
251
  moovio_sdk/models/components/moovfeedetails.py,sha256=GovSQFW4mExyx_jW5VY8nIK0ezSebPnguLoH2xgzO0o,1853
251
252
  moovio_sdk/models/components/moovwalletpaymentmethod.py,sha256=_FmIK5xllEX3B6YjYdpvQj61n5Src8ZRmsWcmUAxfcs,978
@@ -258,8 +259,8 @@ moovio_sdk/models/components/onboardinginvite.py,sha256=0JnZR0c6I-lmGo1OvSJakBGJ
258
259
  moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtIPX3jrYVfJQrHKEQZ3YFPT21aAM,2578
259
260
  moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
260
261
  moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
261
- moovio_sdk/models/components/partnerpricing.py,sha256=eDiJz9xX0TK8LHAxTWk6yV3z6Df6LLysoj-bCYa1ztU,1561
262
- moovio_sdk/models/components/partnerpricingagreement.py,sha256=dRtjzYLOGSniDg2i7RVB5y9-DUCHH3_Qb_QoMw6GziA,1930
262
+ moovio_sdk/models/components/partnerpricing.py,sha256=2pof5qkh_TdsIgWnog0ywhgYSuENRLHSQw2e44oTmtY,2118
263
+ moovio_sdk/models/components/partnerpricingagreement.py,sha256=GDvhM3vO4Ta3Hwtp37ezwgwWRjmE9zC2FXJODnrklLk,2487
263
264
  moovio_sdk/models/components/patchaccount.py,sha256=9JhHL190PwO9HAVc4maUv5iNX-tU7wtwIFkc5B2-2Wo,4518
264
265
  moovio_sdk/models/components/patchaccounterror.py,sha256=68urJQxtMBlvzimAQcj8BR7NX-q140Jj15WVq5NCY30,1458
265
266
  moovio_sdk/models/components/patchbusiness.py,sha256=MXhweZYmjmbXJ5PF9-eiue2R2DP-zI2qeFQWoO0kBLI,2700
@@ -354,7 +355,7 @@ moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30
354
355
  moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
355
356
  moovio_sdk/models/components/transferoptions.py,sha256=7BEWfTTzxMR-5rcrwLDfMVf7IQ1XSQxU_WL7mYtHTNs,789
356
357
  moovio_sdk/models/components/transferresponse.py,sha256=RfFQUsFEY6l5Rk0DjgBf09IQ9PdHgn4NSXf1AMmrvaM,508
357
- moovio_sdk/models/components/transfersource.py,sha256=h96UScsp9P-wFg72pru3hpPMAsnZCvEOGT7S-EQBiIg,3269
358
+ moovio_sdk/models/components/transfersource.py,sha256=ZpdfQGsPS8k_MPaYMIi-6AxvdZs1wbJ-xi7UeA43ST0,3662
358
359
  moovio_sdk/models/components/transferstatus.py,sha256=rw0RiqIZ2N0fhu3f7WKeJ919EBtFvYUQ0h4YbRx9XD4,371
359
360
  moovio_sdk/models/components/transferwaitfor.py,sha256=rdjiNuV5J78oqxQ6v954xNnOwcyhmh9Mgo7YCrBUoXA,202
360
361
  moovio_sdk/models/components/underwriting.py,sha256=1_wdBNjNrX-6tNNr7F-nxd1M8-jk5bxnWIgq_j6CCtI,1929
@@ -380,7 +381,7 @@ moovio_sdk/models/components/volumebycustomertypeerror.py,sha256=zted3iTK3pbCdIR
380
381
  moovio_sdk/models/components/wallet.py,sha256=CVYmfx3s69Ror_tjt60x6WOZABiltODednfdX4mdLdc,746
381
382
  moovio_sdk/models/components/walletavailablebalance.py,sha256=belUWnDIVDHGwkuuv8sh-ZIjkxqZwRz8BU7CzcjUJ1o,854
382
383
  moovio_sdk/models/components/wallettransaction.py,sha256=oVx_Vtmw0UmSGk_Mdw_DeFpygp7Vva0iP9jyml0FnzY,6940
383
- moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=4SWoRbwojtSqf-CvZ0tURRjGMwC_Q6hGhPSMo3y5aMA,388
384
+ moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=Mh549qh9Sbr1QPOHZdyJAjhbdlcTP6uZS3ygHdALx5E,404
384
385
  moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
385
386
  moovio_sdk/models/components/wallettransactiontype.py,sha256=EiiCvg2dF1cYIIZ-5E-zzsrlJzr9rGL-le6Iz8kTD8w,1058
386
387
  moovio_sdk/models/errors/__init__.py,sha256=5En0_541JISy02CkiycaHwMubpf4DKlBcpvjR_o-tlQ,5530
@@ -558,7 +559,7 @@ moovio_sdk/payment_links.py,sha256=ejar3-EKcOgwHY1vw6350iXPLYZTHuIYzg5amjgNBQo,7
558
559
  moovio_sdk/payment_methods.py,sha256=MvS5QvEgfYvqZ_gR1_mWh8E7sLvmyMfQ4pKBVzZeduU,20995
559
560
  moovio_sdk/ping.py,sha256=fYM0yYDBEoo6Do55oNh_mLqelBxKpofv7tOrzVJioOc,9539
560
561
  moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
561
- moovio_sdk/receipts.py,sha256=6Hv1amMhDot9ElpMqsGRSQhinmQAN5e79-DFgnKH0dY,21098
562
+ moovio_sdk/receipts.py,sha256=EBsxlliNZ7-MTBqqi_yVk_LPviYthTq0eZhgnH5IGfk,21098
562
563
  moovio_sdk/representatives.py,sha256=nmDgxhxxfHtE8Li-F0zk9kUuq33cR9fEibue2zJ6nO0,64454
563
564
  moovio_sdk/scheduling.py,sha256=-i2mkiwWLjz3ZjWEPvO6U6nZwd7V0gxr48r-955li8k,65653
564
565
  moovio_sdk/sdk.py,sha256=J6rXCBZ4_c5GE3duJR9mb2FExgDfFo9Qe2ixxUOXIvw,10045
@@ -586,6 +587,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
586
587
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
587
588
  moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
588
589
  moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
589
- moovio_sdk-0.3.12.dist-info/METADATA,sha256=GrB2WxKb_iuxmqqePzz-dPu1rsIw13x0MgkF0ruMSkg,103756
590
- moovio_sdk-0.3.12.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
591
- moovio_sdk-0.3.12.dist-info/RECORD,,
590
+ moovio_sdk-0.3.14.dist-info/METADATA,sha256=JCH2TwXdOEIIKvEY6vb_-6X8sUhxTY941h_f38jWowk,103756
591
+ moovio_sdk-0.3.14.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
592
+ moovio_sdk-0.3.14.dist-info/RECORD,,