moovio_sdk 0.3.10__py3-none-any.whl → 0.3.12__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 +43 -16
- moovio_sdk/models/components/cardpresentpaymentpaymentmethod.py +40 -0
- moovio_sdk/models/components/debitholdperiod.py +2 -2
- moovio_sdk/models/components/entrymode.py +10 -0
- moovio_sdk/models/components/governmentid.py +8 -8
- moovio_sdk/models/components/governmentiderror.py +8 -8
- moovio_sdk/models/components/partialscheduleaccount.py +21 -0
- moovio_sdk/models/components/paymentmethod.py +6 -0
- moovio_sdk/models/components/paymentmethodtype.py +1 -0
- moovio_sdk/models/components/schedulelistresponse.py +79 -0
- moovio_sdk/models/components/taxid.py +4 -4
- moovio_sdk/models/components/taxidupdate.py +4 -4
- moovio_sdk/models/components/terminalcard.py +78 -0
- moovio_sdk/models/operations/__init__.py +2 -0
- moovio_sdk/models/operations/listschedules.py +16 -3
- moovio_sdk/scheduling.py +10 -4
- moovio_sdk/utils/serializers.py +1 -1
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.12.dist-info}/METADATA +9 -9
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.12.dist-info}/RECORD +21 -16
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.12.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.12"
|
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.548.6"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.12 2.548.6 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -138,6 +138,11 @@ from .cardpaymentpaymentmethod import (
|
|
138
138
|
CardPaymentPaymentMethodTypedDict,
|
139
139
|
)
|
140
140
|
from .cardpaymentsettings import CardPaymentSettings, CardPaymentSettingsTypedDict
|
141
|
+
from .cardpresentpaymentpaymentmethod import (
|
142
|
+
CardPresentPaymentPaymentMethod,
|
143
|
+
CardPresentPaymentPaymentMethodPaymentMethodType,
|
144
|
+
CardPresentPaymentPaymentMethodTypedDict,
|
145
|
+
)
|
141
146
|
from .cardtransactiondetails import (
|
142
147
|
CardTransactionDetails,
|
143
148
|
CardTransactionDetailsTypedDict,
|
@@ -305,6 +310,7 @@ from .enrichedbusinessresponse import (
|
|
305
310
|
from .enrichedindustries import EnrichedIndustries, EnrichedIndustriesTypedDict
|
306
311
|
from .enrichedindustry import EnrichedIndustry, EnrichedIndustryTypedDict
|
307
312
|
from .enrichedindustrycodes import EnrichedIndustryCodes, EnrichedIndustryCodesTypedDict
|
313
|
+
from .entrymode import EntryMode
|
308
314
|
from .evidencetextresponse import EvidenceTextResponse, EvidenceTextResponseTypedDict
|
309
315
|
from .evidencetype import EvidenceType
|
310
316
|
from .evidenceuploadresponse import (
|
@@ -345,20 +351,20 @@ from .generatedbydisputeid import GeneratedByDisputeID, GeneratedByDisputeIDType
|
|
345
351
|
from .generatedbytransferid import GeneratedByTransferID, GeneratedByTransferIDTypedDict
|
346
352
|
from .governmentid import (
|
347
353
|
GovernmentID,
|
348
|
-
GovernmentIDItin,
|
349
|
-
GovernmentIDItinTypedDict,
|
350
|
-
GovernmentIDSsn,
|
351
|
-
GovernmentIDSsnTypedDict,
|
352
354
|
GovernmentIDTypedDict,
|
353
|
-
)
|
354
|
-
from .governmentiderror import (
|
355
|
-
GovernmentIDError,
|
356
|
-
GovernmentIDErrorTypedDict,
|
357
355
|
Itin,
|
358
356
|
ItinTypedDict,
|
359
357
|
Ssn,
|
360
358
|
SsnTypedDict,
|
361
359
|
)
|
360
|
+
from .governmentiderror import (
|
361
|
+
GovernmentIDError,
|
362
|
+
GovernmentIDErrorItin,
|
363
|
+
GovernmentIDErrorItinTypedDict,
|
364
|
+
GovernmentIDErrorSsn,
|
365
|
+
GovernmentIDErrorSsnTypedDict,
|
366
|
+
GovernmentIDErrorTypedDict,
|
367
|
+
)
|
362
368
|
from .granttype import GrantType
|
363
369
|
from .incurredfee import IncurredFee, IncurredFeeTypedDict
|
364
370
|
from .individualname import IndividualName, IndividualNameTypedDict
|
@@ -438,6 +444,10 @@ from .onboardingpartneraccount import (
|
|
438
444
|
OnboardingPartnerAccount,
|
439
445
|
OnboardingPartnerAccountTypedDict,
|
440
446
|
)
|
447
|
+
from .partialscheduleaccount import (
|
448
|
+
PartialScheduleAccount,
|
449
|
+
PartialScheduleAccountTypedDict,
|
450
|
+
)
|
441
451
|
from .partnerpricing import PartnerPricing, PartnerPricingTypedDict
|
442
452
|
from .partnerpricingagreement import (
|
443
453
|
PartnerPricingAgreement,
|
@@ -581,6 +591,7 @@ from .rtprejectioncode import RTPRejectionCode
|
|
581
591
|
from .rtptransactiondetails import RTPTransactionDetails, RTPTransactionDetailsTypedDict
|
582
592
|
from .rtptransactionstatus import RTPTransactionStatus
|
583
593
|
from .runtransfer import RunTransfer, RunTransferTypedDict
|
594
|
+
from .schedulelistresponse import ScheduleListResponse, ScheduleListResponseTypedDict
|
584
595
|
from .schedulepaymentmethod import (
|
585
596
|
AchDetails,
|
586
597
|
AchDetailsTypedDict,
|
@@ -606,11 +617,17 @@ from .sweepconfigpaymentmethod import (
|
|
606
617
|
)
|
607
618
|
from .sweepconfigstatus import SweepConfigStatus
|
608
619
|
from .sweepstatus import SweepStatus
|
609
|
-
from .taxid import
|
610
|
-
from .taxidupdate import
|
620
|
+
from .taxid import Ein, EinTypedDict, TaxID, TaxIDTypedDict
|
621
|
+
from .taxidupdate import (
|
622
|
+
TaxIDUpdate,
|
623
|
+
TaxIDUpdateEin,
|
624
|
+
TaxIDUpdateEinTypedDict,
|
625
|
+
TaxIDUpdateTypedDict,
|
626
|
+
)
|
611
627
|
from .terminalapplication import TerminalApplication, TerminalApplicationTypedDict
|
612
628
|
from .terminalapplicationplatform import TerminalApplicationPlatform
|
613
629
|
from .terminalapplicationstatus import TerminalApplicationStatus
|
630
|
+
from .terminalcard import TerminalCard, TerminalCardTypedDict
|
614
631
|
from .termsofservice import TermsOfService, TermsOfServiceTypedDict
|
615
632
|
from .termsofserviceerror import (
|
616
633
|
Manual,
|
@@ -860,6 +877,9 @@ __all__ = [
|
|
860
877
|
"CardPaymentSettings",
|
861
878
|
"CardPaymentSettingsTypedDict",
|
862
879
|
"CardPaymentTypedDict",
|
880
|
+
"CardPresentPaymentPaymentMethod",
|
881
|
+
"CardPresentPaymentPaymentMethodPaymentMethodType",
|
882
|
+
"CardPresentPaymentPaymentMethodTypedDict",
|
863
883
|
"CardTransactionDetails",
|
864
884
|
"CardTransactionDetailsTypedDict",
|
865
885
|
"CardTransactionFailureCode",
|
@@ -1004,6 +1024,7 @@ __all__ = [
|
|
1004
1024
|
"EnrichedIndustryCodes",
|
1005
1025
|
"EnrichedIndustryCodesTypedDict",
|
1006
1026
|
"EnrichedIndustryTypedDict",
|
1027
|
+
"EntryMode",
|
1007
1028
|
"Error",
|
1008
1029
|
"ErrorTypedDict",
|
1009
1030
|
"EvidenceTextResponse",
|
@@ -1054,11 +1075,11 @@ __all__ = [
|
|
1054
1075
|
"GeneratedByTypedDict",
|
1055
1076
|
"GovernmentID",
|
1056
1077
|
"GovernmentIDError",
|
1078
|
+
"GovernmentIDErrorItin",
|
1079
|
+
"GovernmentIDErrorItinTypedDict",
|
1080
|
+
"GovernmentIDErrorSsn",
|
1081
|
+
"GovernmentIDErrorSsnTypedDict",
|
1057
1082
|
"GovernmentIDErrorTypedDict",
|
1058
|
-
"GovernmentIDItin",
|
1059
|
-
"GovernmentIDItinTypedDict",
|
1060
|
-
"GovernmentIDSsn",
|
1061
|
-
"GovernmentIDSsnTypedDict",
|
1062
1083
|
"GovernmentIDTypedDict",
|
1063
1084
|
"GrantType",
|
1064
1085
|
"IncurredFee",
|
@@ -1148,6 +1169,8 @@ __all__ = [
|
|
1148
1169
|
"OnboardingInviteTypedDict",
|
1149
1170
|
"OnboardingPartnerAccount",
|
1150
1171
|
"OnboardingPartnerAccountTypedDict",
|
1172
|
+
"PartialScheduleAccount",
|
1173
|
+
"PartialScheduleAccountTypedDict",
|
1151
1174
|
"PartnerPricing",
|
1152
1175
|
"PartnerPricingAgreement",
|
1153
1176
|
"PartnerPricingAgreementTypedDict",
|
@@ -1286,6 +1309,8 @@ __all__ = [
|
|
1286
1309
|
"RunTransfer",
|
1287
1310
|
"RunTransferTypedDict",
|
1288
1311
|
"SECCode",
|
1312
|
+
"ScheduleListResponse",
|
1313
|
+
"ScheduleListResponseTypedDict",
|
1289
1314
|
"SchedulePaymentMethod",
|
1290
1315
|
"SchedulePaymentMethodTypedDict",
|
1291
1316
|
"ScheduleResponse",
|
@@ -1314,15 +1339,17 @@ __all__ = [
|
|
1314
1339
|
"SweepStatus",
|
1315
1340
|
"SweepTypedDict",
|
1316
1341
|
"TaxID",
|
1317
|
-
"TaxIDEin",
|
1318
|
-
"TaxIDEinTypedDict",
|
1319
1342
|
"TaxIDTypedDict",
|
1320
1343
|
"TaxIDUpdate",
|
1344
|
+
"TaxIDUpdateEin",
|
1345
|
+
"TaxIDUpdateEinTypedDict",
|
1321
1346
|
"TaxIDUpdateTypedDict",
|
1322
1347
|
"TerminalApplication",
|
1323
1348
|
"TerminalApplicationPlatform",
|
1324
1349
|
"TerminalApplicationStatus",
|
1325
1350
|
"TerminalApplicationTypedDict",
|
1351
|
+
"TerminalCard",
|
1352
|
+
"TerminalCardTypedDict",
|
1326
1353
|
"TermsOfService",
|
1327
1354
|
"TermsOfServiceError",
|
1328
1355
|
"TermsOfServiceErrorTypedDict",
|
@@ -0,0 +1,40 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .terminalcard import TerminalCard, TerminalCardTypedDict
|
5
|
+
from enum import Enum
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing import Optional
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
10
|
+
|
11
|
+
|
12
|
+
class CardPresentPaymentPaymentMethodPaymentMethodType(str, Enum):
|
13
|
+
CARD_PRESENT_PAYMENT = "card-present-payment"
|
14
|
+
|
15
|
+
|
16
|
+
class CardPresentPaymentPaymentMethodTypedDict(TypedDict):
|
17
|
+
r"""A card used at point of sale terminal for a card present transaction as contained within a payment method."""
|
18
|
+
|
19
|
+
payment_method_id: str
|
20
|
+
r"""ID of the payment method."""
|
21
|
+
payment_method_type: CardPresentPaymentPaymentMethodPaymentMethodType
|
22
|
+
terminal_card: NotRequired[TerminalCardTypedDict]
|
23
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
24
|
+
|
25
|
+
|
26
|
+
class CardPresentPaymentPaymentMethod(BaseModel):
|
27
|
+
r"""A card used at point of sale terminal for a card present transaction as contained within a payment method."""
|
28
|
+
|
29
|
+
payment_method_id: Annotated[str, pydantic.Field(alias="paymentMethodID")]
|
30
|
+
r"""ID of the payment method."""
|
31
|
+
|
32
|
+
payment_method_type: Annotated[
|
33
|
+
CardPresentPaymentPaymentMethodPaymentMethodType,
|
34
|
+
pydantic.Field(alias="paymentMethodType"),
|
35
|
+
]
|
36
|
+
|
37
|
+
terminal_card: Annotated[
|
38
|
+
Optional[TerminalCard], pydantic.Field(alias="terminalCard")
|
39
|
+
] = None
|
40
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
@@ -8,5 +8,5 @@ class DebitHoldPeriod(str, Enum):
|
|
8
8
|
r"""An optional override of your default ACH hold period in banking days. The hold period must be longer than or equal to your default setting."""
|
9
9
|
|
10
10
|
NO_HOLD = "no-hold"
|
11
|
-
|
12
|
-
|
11
|
+
ONE_MINUS_DAY = "1-day"
|
12
|
+
TWO_MINUS_DAYS = "2-days"
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class EntryMode(str, Enum):
|
8
|
+
r"""How the card information was entered into the point of sale terminal."""
|
9
|
+
|
10
|
+
CONTACTLESS = "contactless"
|
@@ -7,34 +7,34 @@ from typing import Optional
|
|
7
7
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
8
8
|
|
9
9
|
|
10
|
-
class
|
10
|
+
class SsnTypedDict(TypedDict):
|
11
11
|
full: NotRequired[str]
|
12
12
|
last_four: NotRequired[str]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class Ssn(BaseModel):
|
16
16
|
full: Optional[str] = None
|
17
17
|
|
18
18
|
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
19
19
|
|
20
20
|
|
21
|
-
class
|
21
|
+
class ItinTypedDict(TypedDict):
|
22
22
|
full: NotRequired[str]
|
23
23
|
last_four: NotRequired[str]
|
24
24
|
|
25
25
|
|
26
|
-
class
|
26
|
+
class Itin(BaseModel):
|
27
27
|
full: Optional[str] = None
|
28
28
|
|
29
29
|
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
30
30
|
|
31
31
|
|
32
32
|
class GovernmentIDTypedDict(TypedDict):
|
33
|
-
ssn: NotRequired[
|
34
|
-
itin: NotRequired[
|
33
|
+
ssn: NotRequired[SsnTypedDict]
|
34
|
+
itin: NotRequired[ItinTypedDict]
|
35
35
|
|
36
36
|
|
37
37
|
class GovernmentID(BaseModel):
|
38
|
-
ssn: Optional[
|
38
|
+
ssn: Optional[Ssn] = None
|
39
39
|
|
40
|
-
itin: Optional[
|
40
|
+
itin: Optional[Itin] = None
|
@@ -7,34 +7,34 @@ from typing import Optional
|
|
7
7
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
8
8
|
|
9
9
|
|
10
|
-
class
|
10
|
+
class GovernmentIDErrorSsnTypedDict(TypedDict):
|
11
11
|
full: NotRequired[str]
|
12
12
|
last_four: NotRequired[str]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class GovernmentIDErrorSsn(BaseModel):
|
16
16
|
full: Optional[str] = None
|
17
17
|
|
18
18
|
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
19
19
|
|
20
20
|
|
21
|
-
class
|
21
|
+
class GovernmentIDErrorItinTypedDict(TypedDict):
|
22
22
|
full: NotRequired[str]
|
23
23
|
last_four: NotRequired[str]
|
24
24
|
|
25
25
|
|
26
|
-
class
|
26
|
+
class GovernmentIDErrorItin(BaseModel):
|
27
27
|
full: Optional[str] = None
|
28
28
|
|
29
29
|
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
30
30
|
|
31
31
|
|
32
32
|
class GovernmentIDErrorTypedDict(TypedDict):
|
33
|
-
ssn: NotRequired[
|
34
|
-
itin: NotRequired[
|
33
|
+
ssn: NotRequired[GovernmentIDErrorSsnTypedDict]
|
34
|
+
itin: NotRequired[GovernmentIDErrorItinTypedDict]
|
35
35
|
|
36
36
|
|
37
37
|
class GovernmentIDError(BaseModel):
|
38
|
-
ssn: Optional[
|
38
|
+
ssn: Optional[GovernmentIDErrorSsn] = None
|
39
39
|
|
40
|
-
itin: Optional[
|
40
|
+
itin: Optional[GovernmentIDErrorItin] = None
|
@@ -0,0 +1,21 @@
|
|
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 import Optional
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
8
|
+
|
9
|
+
|
10
|
+
class PartialScheduleAccountTypedDict(TypedDict):
|
11
|
+
account_id: str
|
12
|
+
display_name: str
|
13
|
+
email: NotRequired[str]
|
14
|
+
|
15
|
+
|
16
|
+
class PartialScheduleAccount(BaseModel):
|
17
|
+
account_id: Annotated[str, pydantic.Field(alias="accountID")]
|
18
|
+
|
19
|
+
display_name: Annotated[str, pydantic.Field(alias="displayName")]
|
20
|
+
|
21
|
+
email: Optional[str] = None
|
@@ -22,6 +22,10 @@ from .cardpaymentpaymentmethod import (
|
|
22
22
|
CardPaymentPaymentMethod,
|
23
23
|
CardPaymentPaymentMethodTypedDict,
|
24
24
|
)
|
25
|
+
from .cardpresentpaymentpaymentmethod import (
|
26
|
+
CardPresentPaymentPaymentMethod,
|
27
|
+
CardPresentPaymentPaymentMethodTypedDict,
|
28
|
+
)
|
25
29
|
from .moovwalletpaymentmethod import (
|
26
30
|
MoovWalletPaymentMethod,
|
27
31
|
MoovWalletPaymentMethodTypedDict,
|
@@ -57,6 +61,7 @@ PaymentMethodTypedDict = TypeAliasType(
|
|
57
61
|
PushToCardPaymentMethodTypedDict,
|
58
62
|
PullFromCardPaymentMethodTypedDict,
|
59
63
|
ApplePayPaymentMethodTypedDict,
|
64
|
+
CardPresentPaymentPaymentMethodTypedDict,
|
60
65
|
],
|
61
66
|
)
|
62
67
|
r"""A method of moving money"""
|
@@ -74,6 +79,7 @@ PaymentMethod = Annotated[
|
|
74
79
|
Annotated[PushToCardPaymentMethod, Tag("push-to-card")],
|
75
80
|
Annotated[PullFromCardPaymentMethod, Tag("pull-from-card")],
|
76
81
|
Annotated[ApplePayPaymentMethod, Tag("apple-pay")],
|
82
|
+
Annotated[CardPresentPaymentPaymentMethod, Tag("card-present-payment")],
|
77
83
|
],
|
78
84
|
Discriminator(
|
79
85
|
lambda m: get_discriminator(m, "payment_method_type", "paymentMethodType")
|
@@ -0,0 +1,79 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .mode import Mode
|
5
|
+
from .occurrencesresponse import OccurrencesResponse, OccurrencesResponseTypedDict
|
6
|
+
from .partialscheduleaccount import (
|
7
|
+
PartialScheduleAccount,
|
8
|
+
PartialScheduleAccountTypedDict,
|
9
|
+
)
|
10
|
+
from .recur import Recur, RecurTypedDict
|
11
|
+
from datetime import datetime
|
12
|
+
from moovio_sdk.types import BaseModel
|
13
|
+
import pydantic
|
14
|
+
from typing import List, Optional
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
16
|
+
|
17
|
+
|
18
|
+
class ScheduleListResponseTypedDict(TypedDict):
|
19
|
+
destination_account_id: str
|
20
|
+
mode: Mode
|
21
|
+
r"""The operating mode for an account."""
|
22
|
+
owner_account_id: str
|
23
|
+
partner_account_id: str
|
24
|
+
schedule_id: str
|
25
|
+
source_account_id: str
|
26
|
+
created_on: datetime
|
27
|
+
updated_on: datetime
|
28
|
+
description: NotRequired[str]
|
29
|
+
r"""Simple description to place on the transfer."""
|
30
|
+
occurrences: NotRequired[List[OccurrencesResponseTypedDict]]
|
31
|
+
recur: NotRequired[RecurTypedDict]
|
32
|
+
r"""Defines configuration for recurring transfers."""
|
33
|
+
disabled_on: NotRequired[datetime]
|
34
|
+
source_account: NotRequired[PartialScheduleAccountTypedDict]
|
35
|
+
destination_account: NotRequired[PartialScheduleAccountTypedDict]
|
36
|
+
partner_account: NotRequired[PartialScheduleAccountTypedDict]
|
37
|
+
|
38
|
+
|
39
|
+
class ScheduleListResponse(BaseModel):
|
40
|
+
destination_account_id: Annotated[str, pydantic.Field(alias="destinationAccountID")]
|
41
|
+
|
42
|
+
mode: Mode
|
43
|
+
r"""The operating mode for an account."""
|
44
|
+
|
45
|
+
owner_account_id: Annotated[str, pydantic.Field(alias="ownerAccountID")]
|
46
|
+
|
47
|
+
partner_account_id: Annotated[str, pydantic.Field(alias="partnerAccountID")]
|
48
|
+
|
49
|
+
schedule_id: Annotated[str, pydantic.Field(alias="scheduleID")]
|
50
|
+
|
51
|
+
source_account_id: Annotated[str, pydantic.Field(alias="sourceAccountID")]
|
52
|
+
|
53
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
54
|
+
|
55
|
+
updated_on: Annotated[datetime, pydantic.Field(alias="updatedOn")]
|
56
|
+
|
57
|
+
description: Optional[str] = None
|
58
|
+
r"""Simple description to place on the transfer."""
|
59
|
+
|
60
|
+
occurrences: Optional[List[OccurrencesResponse]] = None
|
61
|
+
|
62
|
+
recur: Optional[Recur] = None
|
63
|
+
r"""Defines configuration for recurring transfers."""
|
64
|
+
|
65
|
+
disabled_on: Annotated[Optional[datetime], pydantic.Field(alias="disabledOn")] = (
|
66
|
+
None
|
67
|
+
)
|
68
|
+
|
69
|
+
source_account: Annotated[
|
70
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="sourceAccount")
|
71
|
+
] = None
|
72
|
+
|
73
|
+
destination_account: Annotated[
|
74
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="destinationAccount")
|
75
|
+
] = None
|
76
|
+
|
77
|
+
partner_account: Annotated[
|
78
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="partnerAccount")
|
79
|
+
] = None
|
@@ -5,21 +5,21 @@ from moovio_sdk.types import BaseModel
|
|
5
5
|
from typing_extensions import TypedDict
|
6
6
|
|
7
7
|
|
8
|
-
class
|
8
|
+
class EinTypedDict(TypedDict):
|
9
9
|
number: str
|
10
10
|
|
11
11
|
|
12
|
-
class
|
12
|
+
class Ein(BaseModel):
|
13
13
|
number: str
|
14
14
|
|
15
15
|
|
16
16
|
class TaxIDTypedDict(TypedDict):
|
17
17
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
18
18
|
|
19
|
-
ein:
|
19
|
+
ein: EinTypedDict
|
20
20
|
|
21
21
|
|
22
22
|
class TaxID(BaseModel):
|
23
23
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
24
24
|
|
25
|
-
ein:
|
25
|
+
ein: Ein
|
@@ -6,21 +6,21 @@ from typing import Optional
|
|
6
6
|
from typing_extensions import NotRequired, TypedDict
|
7
7
|
|
8
8
|
|
9
|
-
class
|
9
|
+
class TaxIDUpdateEinTypedDict(TypedDict):
|
10
10
|
number: NotRequired[str]
|
11
11
|
|
12
12
|
|
13
|
-
class
|
13
|
+
class TaxIDUpdateEin(BaseModel):
|
14
14
|
number: Optional[str] = None
|
15
15
|
|
16
16
|
|
17
17
|
class TaxIDUpdateTypedDict(TypedDict):
|
18
18
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
19
19
|
|
20
|
-
ein: NotRequired[
|
20
|
+
ein: NotRequired[TaxIDUpdateEinTypedDict]
|
21
21
|
|
22
22
|
|
23
23
|
class TaxIDUpdate(BaseModel):
|
24
24
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
25
25
|
|
26
|
-
ein: Optional[
|
26
|
+
ein: Optional[TaxIDUpdateEin] = None
|
@@ -0,0 +1,78 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .cardbrand import CardBrand
|
5
|
+
from .cardexpiration import CardExpiration, CardExpirationTypedDict
|
6
|
+
from .cardtype import CardType
|
7
|
+
from .entrymode import EntryMode
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
import pydantic
|
10
|
+
from typing import Optional
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
12
|
+
|
13
|
+
|
14
|
+
class TerminalCardTypedDict(TypedDict):
|
15
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
16
|
+
|
17
|
+
entry_mode: NotRequired[EntryMode]
|
18
|
+
r"""How the card information was entered into the point of sale terminal."""
|
19
|
+
brand: NotRequired[CardBrand]
|
20
|
+
r"""The card brand."""
|
21
|
+
bin: NotRequired[str]
|
22
|
+
card_type: NotRequired[CardType]
|
23
|
+
r"""The type of the card."""
|
24
|
+
expiration: NotRequired[CardExpirationTypedDict]
|
25
|
+
r"""The expiration date of the card or token."""
|
26
|
+
fingerprint: NotRequired[str]
|
27
|
+
r"""Uniquely identifies a linked payment card or token.
|
28
|
+
For Apple Pay, the fingerprint is based on the tokenized card number and may vary based on the user's device.
|
29
|
+
This field can be used to identify specific payment methods across multiple accounts on your platform.
|
30
|
+
"""
|
31
|
+
holder_name: NotRequired[str]
|
32
|
+
r"""The name of the cardholder as it appears on the card."""
|
33
|
+
issuer: NotRequired[str]
|
34
|
+
r"""Financial institution that issued the card."""
|
35
|
+
issuer_country: NotRequired[str]
|
36
|
+
r"""Country where the card was issued."""
|
37
|
+
last_four_card_number: NotRequired[str]
|
38
|
+
r"""Last four digits of the card number"""
|
39
|
+
|
40
|
+
|
41
|
+
class TerminalCard(BaseModel):
|
42
|
+
r"""Describes payment card details captured with tap or in-person payment."""
|
43
|
+
|
44
|
+
entry_mode: Annotated[Optional[EntryMode], pydantic.Field(alias="entryMode")] = None
|
45
|
+
r"""How the card information was entered into the point of sale terminal."""
|
46
|
+
|
47
|
+
brand: Optional[CardBrand] = None
|
48
|
+
r"""The card brand."""
|
49
|
+
|
50
|
+
bin: Optional[str] = None
|
51
|
+
|
52
|
+
card_type: Annotated[Optional[CardType], pydantic.Field(alias="cardType")] = None
|
53
|
+
r"""The type of the card."""
|
54
|
+
|
55
|
+
expiration: Optional[CardExpiration] = None
|
56
|
+
r"""The expiration date of the card or token."""
|
57
|
+
|
58
|
+
fingerprint: Optional[str] = None
|
59
|
+
r"""Uniquely identifies a linked payment card or token.
|
60
|
+
For Apple Pay, the fingerprint is based on the tokenized card number and may vary based on the user's device.
|
61
|
+
This field can be used to identify specific payment methods across multiple accounts on your platform.
|
62
|
+
"""
|
63
|
+
|
64
|
+
holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
|
65
|
+
r"""The name of the cardholder as it appears on the card."""
|
66
|
+
|
67
|
+
issuer: Optional[str] = None
|
68
|
+
r"""Financial institution that issued the card."""
|
69
|
+
|
70
|
+
issuer_country: Annotated[Optional[str], pydantic.Field(alias="issuerCountry")] = (
|
71
|
+
None
|
72
|
+
)
|
73
|
+
r"""Country where the card was issued."""
|
74
|
+
|
75
|
+
last_four_card_number: Annotated[
|
76
|
+
Optional[str], pydantic.Field(alias="lastFourCardNumber")
|
77
|
+
] = None
|
78
|
+
r"""Last four digits of the card number"""
|
@@ -789,6 +789,7 @@ from .listrepresentatives import (
|
|
789
789
|
ListRepresentativesResponseTypedDict,
|
790
790
|
)
|
791
791
|
from .listschedules import (
|
792
|
+
Hydrate,
|
792
793
|
ListSchedulesGlobals,
|
793
794
|
ListSchedulesGlobalsTypedDict,
|
794
795
|
ListSchedulesRequest,
|
@@ -1445,6 +1446,7 @@ __all__ = [
|
|
1445
1446
|
"GetWalletTransactionRequestTypedDict",
|
1446
1447
|
"GetWalletTransactionResponse",
|
1447
1448
|
"GetWalletTransactionResponseTypedDict",
|
1449
|
+
"Hydrate",
|
1448
1450
|
"InitiateBankAccountVerificationGlobals",
|
1449
1451
|
"InitiateBankAccountVerificationGlobalsTypedDict",
|
1450
1452
|
"InitiateBankAccountVerificationRequest",
|
@@ -1,7 +1,10 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
|
-
from
|
4
|
+
from enum import Enum
|
5
|
+
from moovio_sdk.models.components import (
|
6
|
+
schedulelistresponse as components_schedulelistresponse,
|
7
|
+
)
|
5
8
|
from moovio_sdk.types import BaseModel
|
6
9
|
from moovio_sdk.utils import (
|
7
10
|
FieldMetadata,
|
@@ -46,10 +49,15 @@ class ListSchedulesGlobals(BaseModel):
|
|
46
49
|
"""
|
47
50
|
|
48
51
|
|
52
|
+
class Hydrate(str, Enum):
|
53
|
+
ACCOUNTS = "accounts"
|
54
|
+
|
55
|
+
|
49
56
|
class ListSchedulesRequestTypedDict(TypedDict):
|
50
57
|
account_id: str
|
51
58
|
skip: NotRequired[int]
|
52
59
|
count: NotRequired[int]
|
60
|
+
hydrate: NotRequired[Hydrate]
|
53
61
|
|
54
62
|
|
55
63
|
class ListSchedulesRequest(BaseModel):
|
@@ -69,13 +77,18 @@ class ListSchedulesRequest(BaseModel):
|
|
69
77
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
70
78
|
] = None
|
71
79
|
|
80
|
+
hydrate: Annotated[
|
81
|
+
Optional[Hydrate],
|
82
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
83
|
+
] = None
|
84
|
+
|
72
85
|
|
73
86
|
class ListSchedulesResponseTypedDict(TypedDict):
|
74
87
|
headers: Dict[str, List[str]]
|
75
|
-
result: List[
|
88
|
+
result: List[components_schedulelistresponse.ScheduleListResponseTypedDict]
|
76
89
|
|
77
90
|
|
78
91
|
class ListSchedulesResponse(BaseModel):
|
79
92
|
headers: Dict[str, List[str]]
|
80
93
|
|
81
|
-
result: List[
|
94
|
+
result: List[components_schedulelistresponse.ScheduleListResponse]
|
moovio_sdk/scheduling.py
CHANGED
@@ -314,12 +314,13 @@ class Scheduling(BaseSDK):
|
|
314
314
|
account_id: str,
|
315
315
|
skip: Optional[int] = None,
|
316
316
|
count: Optional[int] = None,
|
317
|
+
hydrate: Optional[operations.Hydrate] = None,
|
317
318
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
318
319
|
server_url: Optional[str] = None,
|
319
320
|
timeout_ms: Optional[int] = None,
|
320
321
|
http_headers: Optional[Mapping[str, str]] = None,
|
321
322
|
) -> operations.ListSchedulesResponse:
|
322
|
-
r"""Describes a list of schedules associated with an account.
|
323
|
+
r"""Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
323
324
|
|
324
325
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
325
326
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -327,6 +328,7 @@ class Scheduling(BaseSDK):
|
|
327
328
|
:param account_id:
|
328
329
|
:param skip:
|
329
330
|
:param count:
|
331
|
+
:param hydrate:
|
330
332
|
:param retries: Override the default retry configuration for this method
|
331
333
|
:param server_url: Override the default server URL for this method
|
332
334
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
@@ -345,6 +347,7 @@ class Scheduling(BaseSDK):
|
|
345
347
|
request = operations.ListSchedulesRequest(
|
346
348
|
skip=skip,
|
347
349
|
count=count,
|
350
|
+
hydrate=hydrate,
|
348
351
|
account_id=account_id,
|
349
352
|
)
|
350
353
|
|
@@ -392,7 +395,7 @@ class Scheduling(BaseSDK):
|
|
392
395
|
if utils.match_response(http_res, "200", "application/json"):
|
393
396
|
return operations.ListSchedulesResponse(
|
394
397
|
result=utils.unmarshal_json(
|
395
|
-
http_res.text, List[components.
|
398
|
+
http_res.text, List[components.ScheduleListResponse]
|
396
399
|
),
|
397
400
|
headers=utils.get_response_headers(http_res.headers),
|
398
401
|
)
|
@@ -432,12 +435,13 @@ class Scheduling(BaseSDK):
|
|
432
435
|
account_id: str,
|
433
436
|
skip: Optional[int] = None,
|
434
437
|
count: Optional[int] = None,
|
438
|
+
hydrate: Optional[operations.Hydrate] = None,
|
435
439
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
436
440
|
server_url: Optional[str] = None,
|
437
441
|
timeout_ms: Optional[int] = None,
|
438
442
|
http_headers: Optional[Mapping[str, str]] = None,
|
439
443
|
) -> operations.ListSchedulesResponse:
|
440
|
-
r"""Describes a list of schedules associated with an account.
|
444
|
+
r"""Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
441
445
|
|
442
446
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
443
447
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -445,6 +449,7 @@ class Scheduling(BaseSDK):
|
|
445
449
|
:param account_id:
|
446
450
|
:param skip:
|
447
451
|
:param count:
|
452
|
+
:param hydrate:
|
448
453
|
:param retries: Override the default retry configuration for this method
|
449
454
|
:param server_url: Override the default server URL for this method
|
450
455
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
@@ -463,6 +468,7 @@ class Scheduling(BaseSDK):
|
|
463
468
|
request = operations.ListSchedulesRequest(
|
464
469
|
skip=skip,
|
465
470
|
count=count,
|
471
|
+
hydrate=hydrate,
|
466
472
|
account_id=account_id,
|
467
473
|
)
|
468
474
|
|
@@ -510,7 +516,7 @@ class Scheduling(BaseSDK):
|
|
510
516
|
if utils.match_response(http_res, "200", "application/json"):
|
511
517
|
return operations.ListSchedulesResponse(
|
512
518
|
result=utils.unmarshal_json(
|
513
|
-
http_res.text, List[components.
|
519
|
+
http_res.text, List[components.ScheduleListResponse]
|
514
520
|
),
|
515
521
|
headers=utils.get_response_headers(http_res.headers),
|
516
522
|
)
|
moovio_sdk/utils/serializers.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.12
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9
|
@@ -193,7 +193,7 @@ with Moov(
|
|
193
193
|
email="jordan.lee@classbooker.dev",
|
194
194
|
description="Local fitness gym paying out instructors",
|
195
195
|
tax_id=components.TaxID(
|
196
|
-
ein=components.
|
196
|
+
ein=components.Ein(
|
197
197
|
number="12-3456789",
|
198
198
|
),
|
199
199
|
),
|
@@ -297,7 +297,7 @@ async def main():
|
|
297
297
|
email="jordan.lee@classbooker.dev",
|
298
298
|
description="Local fitness gym paying out instructors",
|
299
299
|
tax_id=components.TaxID(
|
300
|
-
ein=components.
|
300
|
+
ein=components.Ein(
|
301
301
|
number="12-3456789",
|
302
302
|
),
|
303
303
|
),
|
@@ -410,7 +410,7 @@ with Moov(
|
|
410
410
|
email="jordan.lee@classbooker.dev",
|
411
411
|
description="Local fitness gym paying out instructors",
|
412
412
|
tax_id=components.TaxID(
|
413
|
-
ein=components.
|
413
|
+
ein=components.Ein(
|
414
414
|
number="12-3456789",
|
415
415
|
),
|
416
416
|
),
|
@@ -1100,7 +1100,7 @@ you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
|
|
1100
1100
|
|
1101
1101
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1102
1102
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
1103
|
-
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#list) - Describes a list of schedules associated with an account.
|
1103
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#list) - Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
1104
1104
|
|
1105
1105
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1106
1106
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -1381,7 +1381,7 @@ with Moov(
|
|
1381
1381
|
email="jordan.lee@classbooker.dev",
|
1382
1382
|
description="Local fitness gym paying out instructors",
|
1383
1383
|
tax_id=components.TaxID(
|
1384
|
-
ein=components.
|
1384
|
+
ein=components.Ein(
|
1385
1385
|
number="12-3456789",
|
1386
1386
|
),
|
1387
1387
|
),
|
@@ -1484,7 +1484,7 @@ with Moov(
|
|
1484
1484
|
email="jordan.lee@classbooker.dev",
|
1485
1485
|
description="Local fitness gym paying out instructors",
|
1486
1486
|
tax_id=components.TaxID(
|
1487
|
-
ein=components.
|
1487
|
+
ein=components.Ein(
|
1488
1488
|
number="12-3456789",
|
1489
1489
|
),
|
1490
1490
|
),
|
@@ -1610,7 +1610,7 @@ with Moov(
|
|
1610
1610
|
email="jordan.lee@classbooker.dev",
|
1611
1611
|
description="Local fitness gym paying out instructors",
|
1612
1612
|
tax_id=components.TaxID(
|
1613
|
-
ein=components.
|
1613
|
+
ein=components.Ein(
|
1614
1614
|
number="12-3456789",
|
1615
1615
|
),
|
1616
1616
|
),
|
@@ -1726,7 +1726,7 @@ with Moov(
|
|
1726
1726
|
email="jordan.lee@classbooker.dev",
|
1727
1727
|
description="Local fitness gym paying out instructors",
|
1728
1728
|
tax_id=components.TaxID(
|
1729
|
-
ein=components.
|
1729
|
+
ein=components.Ein(
|
1730
1730
|
number="12-3456789",
|
1731
1731
|
),
|
1732
1732
|
),
|
@@ -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=8z34ScVRuLcx3JMoRhZFq0FM2_7MAlQmQwnFE6hg9mo,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=izJQMn75VAYGQ7HiiuwOnGCNZuns6sQjkc12giMtvmg,51471
|
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
|
@@ -114,6 +114,7 @@ moovio_sdk/models/components/cardpaymentdetails.py,sha256=FUMWe-xkPcOE3RZP7VUQcL
|
|
114
114
|
moovio_sdk/models/components/cardpaymentdetailserror.py,sha256=T2g_b03KoC5Ws_2osERfBdieFx2klublaWaGN3tRRRQ,506
|
115
115
|
moovio_sdk/models/components/cardpaymentpaymentmethod.py,sha256=fNPMJZcwnSkrBbtwBpmBETQNBu-y_VzlXekw6O5zNzg,1083
|
116
116
|
moovio_sdk/models/components/cardpaymentsettings.py,sha256=fU4e004XIPDLNYwf6o2cpIbfQASlNP9fPL8kF_0r-pc,998
|
117
|
+
moovio_sdk/models/components/cardpresentpaymentpaymentmethod.py,sha256=FOGWUNSdmOrFBBTCbltj-P-tLqrtCqLsbkTsJH9Fk0w,1546
|
117
118
|
moovio_sdk/models/components/cardtransactiondetails.py,sha256=Dvd_0orePLNjSEfeImQnkD3neb76df_cfT884sENqL8,3853
|
118
119
|
moovio_sdk/models/components/cardtransactionfailurecode.py,sha256=Ve9T_tGy0OGZavczlRu-k267hq99xAzhTOu4juG7Gqg,1287
|
119
120
|
moovio_sdk/models/components/cardtransactionstatus.py,sha256=xKtKp1pyEs7g5yTkAqtxgrO_IECkIcb37ZM2pzP7XOU,399
|
@@ -162,7 +163,7 @@ moovio_sdk/models/components/createtransfersourceach.py,sha256=7WeF6YEoEvC-Dfn4m
|
|
162
163
|
moovio_sdk/models/components/createtransfersourcecard.py,sha256=hCUSzjPw6NyPLMEnSLjVGbMqhrSk55hwBU4PE7YD2Lc,1452
|
163
164
|
moovio_sdk/models/components/customersupport.py,sha256=VzZ7vBAKZC9q9KDDCXuH8EenEFiu3bGiOuCAvcHfHYE,1124
|
164
165
|
moovio_sdk/models/components/customersupporterror.py,sha256=0tHko8wHUGwaEcPq7lOgZyZbZ20Nuf2eJeRiIaBqP5U,768
|
165
|
-
moovio_sdk/models/components/debitholdperiod.py,sha256=
|
166
|
+
moovio_sdk/models/components/debitholdperiod.py,sha256=nAcdMuNrf-6bcXsPf68y0kfEx5qrS7b4OMQIOh-O1o0,400
|
166
167
|
moovio_sdk/models/components/disbursementpaymentmethodtype.py,sha256=RoBMOcxI6SvUfDiq2VR8_Dw7r4ksSlcZEpFgeG4aKQ0,398
|
167
168
|
moovio_sdk/models/components/displayoptionserror.py,sha256=1s3Pbi9-bPDh-8jWqI9r7tOKWz3cBltbWk_KCWTGxQE,621
|
168
169
|
moovio_sdk/models/components/dispute.py,sha256=82IXEi5E2s2aSRJpH3k1hvL-sp0sRMZkiWxg3wxqp2Y,2731
|
@@ -183,6 +184,7 @@ moovio_sdk/models/components/enrichedbusinessresponse.py,sha256=aIneszJZE1KeMwhL
|
|
183
184
|
moovio_sdk/models/components/enrichedindustries.py,sha256=hSrecw0-tMvJCjojfJmFvkGvI4OYplDuB5pr_2szJPA,459
|
184
185
|
moovio_sdk/models/components/enrichedindustry.py,sha256=LZZyh6L6MP3VBkMNNoI_h-G_0vDUJdTJ0zwlITlEdRc,813
|
185
186
|
moovio_sdk/models/components/enrichedindustrycodes.py,sha256=MRftYEd_dv9qRjXBf6r2nj5LgA7yURLCZ35pYsv-P5w,438
|
187
|
+
moovio_sdk/models/components/entrymode.py,sha256=UokGL7yYSnbptzEMA_mwNy9wHsXgA5hb-b37KVEmMFM,274
|
186
188
|
moovio_sdk/models/components/evidencetextresponse.py,sha256=8m2u3iC_gCUSuU4h53JLX1eJRj8iUgTIaYs8SztDiRQ,790
|
187
189
|
moovio_sdk/models/components/evidencetype.py,sha256=KQMJuoRyjESBU59-TghucuZC0P14KlvLdce2gtDjixM,469
|
188
190
|
moovio_sdk/models/components/evidenceuploadresponse.py,sha256=tCxjtueEl1URQjNTE2QYp9zsRFG_c5hjdvLil_3QaEk,1615
|
@@ -207,8 +209,8 @@ moovio_sdk/models/components/generatedbybankaccountid.py,sha256=3Zbb1Osvs1xpnQpp
|
|
207
209
|
moovio_sdk/models/components/generatedbycardid.py,sha256=lqx-WCTcBspZza2QvWAG-ydXw3DxftBzSeO6zh5vre4,447
|
208
210
|
moovio_sdk/models/components/generatedbydisputeid.py,sha256=4dOxW67KEE2PVNQEpWkric1Aee290qljqeh0BtPz-6I,462
|
209
211
|
moovio_sdk/models/components/generatedbytransferid.py,sha256=M64GIsjG7ZDg7i84-nXWabSrjYqSBbuOnrJGfA8H3Oc,467
|
210
|
-
moovio_sdk/models/components/governmentid.py,sha256=
|
211
|
-
moovio_sdk/models/components/governmentiderror.py,sha256=
|
212
|
+
moovio_sdk/models/components/governmentid.py,sha256=33k1CxMiMxiclwQ2GVEwJcBcyAEMcvEErZM1RTOMJvk,925
|
213
|
+
moovio_sdk/models/components/governmentiderror.py,sha256=oQM3JAM3G3Mxt4w5yRNNPpw1FIeobc44GbKhvgTqKZo,1071
|
212
214
|
moovio_sdk/models/components/granttype.py,sha256=j7dVMjidy1nrWlSPTE7--_vTiqRTAH4F6xHub5kp78A,481
|
213
215
|
moovio_sdk/models/components/incurredfee.py,sha256=aPTYTUICtts5sFinKIcRAD3hm78oJG7ZkS0GuCyovD0,1477
|
214
216
|
moovio_sdk/models/components/individualname.py,sha256=RkigcoUQFs7SkLyhO4tTvmGH_6ny9muNlZgfnAfXtpM,1041
|
@@ -255,6 +257,7 @@ moovio_sdk/models/components/occurrencestatus.py,sha256=7dCN7i_c5_eL-gXpkT-ZL6dJ
|
|
255
257
|
moovio_sdk/models/components/onboardinginvite.py,sha256=0JnZR0c6I-lmGo1OvSJakBGJC9W7ybDdCR_nglwzwlE,3790
|
256
258
|
moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtIPX3jrYVfJQrHKEQZ3YFPT21aAM,2578
|
257
259
|
moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
|
260
|
+
moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
|
258
261
|
moovio_sdk/models/components/partnerpricing.py,sha256=eDiJz9xX0TK8LHAxTWk6yV3z6Df6LLysoj-bCYa1ztU,1561
|
259
262
|
moovio_sdk/models/components/partnerpricingagreement.py,sha256=dRtjzYLOGSniDg2i7RVB5y9-DUCHH3_Qb_QoMw6GziA,1930
|
260
263
|
moovio_sdk/models/components/patchaccount.py,sha256=9JhHL190PwO9HAVc4maUv5iNX-tU7wtwIFkc5B2-2Wo,4518
|
@@ -274,11 +277,11 @@ moovio_sdk/models/components/paymentlinkpaymentdetailsupdate.py,sha256=AzpriAe0v
|
|
274
277
|
moovio_sdk/models/components/paymentlinkpayoutdetails.py,sha256=I9XZMzfvubg6KgI4cjBwiBrbcONG14s4jT9AawCi_s0,1224
|
275
278
|
moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=c6xXDinJR_eNc8ySM5SSfolUJcGHgMBJV3iJMCmxUHQ,1358
|
276
279
|
moovio_sdk/models/components/paymentlinkstatus.py,sha256=msrQMJyTpPfxsiY_jlYLUjfozjTUqD1er-UJ3bmFMiw,258
|
277
|
-
moovio_sdk/models/components/paymentmethod.py,sha256=
|
280
|
+
moovio_sdk/models/components/paymentmethod.py,sha256=0Y5Dw43hTWrT3md6TYLWw71UaqgXx-FoGDkC2yRNQaM,3106
|
278
281
|
moovio_sdk/models/components/paymentmethodsbankaccount.py,sha256=hFtw7jmbaMqyhqWV1lv7lsU-jPxtZHC8TB8lQRMMO7M,2160
|
279
282
|
moovio_sdk/models/components/paymentmethodscard.py,sha256=Akm5LWy7VPt8bA4wX2orKNjZ6s2kwk17vQtTHOEIepE,5097
|
280
283
|
moovio_sdk/models/components/paymentmethodswallet.py,sha256=j-MNQmjwCiS29UbMCoeR8JTH981oicIeCFaZfzP4UTI,388
|
281
|
-
moovio_sdk/models/components/paymentmethodtype.py,sha256=
|
284
|
+
moovio_sdk/models/components/paymentmethodtype.py,sha256=fix1w2wY7-xoKQH5wYb0kbMeNlg5gM3GGqCpiYJHvi4,678
|
282
285
|
moovio_sdk/models/components/payoutdetailserror.py,sha256=UkRP7L99TiPkNcIEGEhR8HJbLeTPhOHRSDTGu3i92uM,685
|
283
286
|
moovio_sdk/models/components/payoutrecipient.py,sha256=D708o36yvkCVFfCfTE-Qu4LqmaBHoaF5scJkJBRzOoc,622
|
284
287
|
moovio_sdk/models/components/payoutrecipienterror.py,sha256=rjo4BKnbTOxQMTdsfYNNFUpRDug48ZwVXEGLjzpTPxk,379
|
@@ -320,6 +323,7 @@ moovio_sdk/models/components/rtprejectioncode.py,sha256=dsTWcHKMmR4SwsWqxEVZEl6U
|
|
320
323
|
moovio_sdk/models/components/rtptransactiondetails.py,sha256=pjcNxWtz1-EaEebpuhs4zNoHyDmQotbQJXg6shUCjF4,1908
|
321
324
|
moovio_sdk/models/components/rtptransactionstatus.py,sha256=aWbQtbT8CJOU-FrbzcotCFPP5h71RxbTyXcBtlDCFZo,369
|
322
325
|
moovio_sdk/models/components/runtransfer.py,sha256=6CxqaWcJT6UvhUsJGw51IwQc6pkPvtr3wwIuEIkq7Hk,998
|
326
|
+
moovio_sdk/models/components/schedulelistresponse.py,sha256=QxRerekqW8XFMdP7jOq-YPkunEnWt1nNY-0rtImjfYY,2718
|
323
327
|
moovio_sdk/models/components/schedulepaymentmethod.py,sha256=-DFfpY3Ssb0Kqy5YfFUuAhEFCHKX15zlW1q4Vv90XMA,2055
|
324
328
|
moovio_sdk/models/components/scheduleresponse.py,sha256=1jls_1PqzU9waltr3wrclZDk4G8rlaxQxIppij5UQw8,2017
|
325
329
|
moovio_sdk/models/components/seccode.py,sha256=Vw9VrvvHQCcuCarjvmywDbV5EzTb58SYKDNznx4TFT0,286
|
@@ -332,11 +336,12 @@ moovio_sdk/models/components/sweepconfig.py,sha256=zeYN963z0uEOpbteBDRvCAWGaq2LT
|
|
332
336
|
moovio_sdk/models/components/sweepconfigpaymentmethod.py,sha256=HP4ptQtccU2Wl1u4gRw-MepzKVgkYLkAJfia1JC5efE,1146
|
333
337
|
moovio_sdk/models/components/sweepconfigstatus.py,sha256=8tmbGIJLrSwCl_8zEUZpffJE-R_WDBZZ7d-cR5K1JCY,218
|
334
338
|
moovio_sdk/models/components/sweepstatus.py,sha256=YA564vw2Ssav2ApmX759gglEvccESDjaT16St-DExRI,316
|
335
|
-
moovio_sdk/models/components/taxid.py,sha256=
|
336
|
-
moovio_sdk/models/components/taxidupdate.py,sha256=
|
339
|
+
moovio_sdk/models/components/taxid.py,sha256=ybTpUMtIreOOMQRPZ7ZbUlLoaxSVcPcGLvl0fcO2yPk,618
|
340
|
+
moovio_sdk/models/components/taxidupdate.py,sha256=X2_Nw8Nvc0E1mahHDZqrqCKv4eyidzYyHfgd9XQ0yGY,775
|
337
341
|
moovio_sdk/models/components/terminalapplication.py,sha256=GKmGi8i425YxFMW4BU_zTghe6YQkZ1Vc0w-LyiwEh3w,2455
|
338
342
|
moovio_sdk/models/components/terminalapplicationplatform.py,sha256=p-880ptVN5vub4DlYbP_VTPyPYuDEYMIZql2fI3FopU,296
|
339
343
|
moovio_sdk/models/components/terminalapplicationstatus.py,sha256=snaXCVyr1J3iEcrW09r3Mp1FtU46dbhGJgcTx3UlF04,326
|
344
|
+
moovio_sdk/models/components/terminalcard.py,sha256=goFEhKML4vyksdH4u0N0Pk33hIcgIZ34anVu7xcrgtA,3100
|
340
345
|
moovio_sdk/models/components/termsofservice.py,sha256=g_v_9ghfkFyf8OJTfuTy5hC1vCl3u3msGKl0tufIN6k,918
|
341
346
|
moovio_sdk/models/components/termsofserviceerror.py,sha256=KnpM_Tz-DH1GjqoIfQIIlq-9raPGVITItFbdot2m770,1093
|
342
347
|
moovio_sdk/models/components/termsofservicetoken.py,sha256=VF0w2YMAJiqyz9INBhb_MdiWtHbDcSXQXxp_AKReAqA,476
|
@@ -416,7 +421,7 @@ moovio_sdk/models/errors/updatepaymentlinkerror.py,sha256=FrRZvrNFtNBuaKyZKStjEM
|
|
416
421
|
moovio_sdk/models/errors/updateunderwritingerror.py,sha256=A8XDduhlAQo6xcZE29atSa7UsQ9uEg2xbbur-V1yUbg,2409
|
417
422
|
moovio_sdk/models/internal/__init__.py,sha256=6khoka0i1AXj5YsxEjzmIs1UYeD8DggU2Z69bLfmxvE,164
|
418
423
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
419
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
424
|
+
moovio_sdk/models/operations/__init__.py,sha256=aqeBjIQExkMnXJqQFeonkEC87Di8CQW5hMnhzO1DY6w,60778
|
420
425
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
421
426
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
422
427
|
moovio_sdk/models/operations/cancelschedule.py,sha256=X0vmSDaW6vyM387Tf02KSBCZNggKxNYm_T0W5zJY494,2394
|
@@ -516,7 +521,7 @@ moovio_sdk/models/operations/listpaymentmethods.py,sha256=fiEvZLA4uVk7r98a6naeTZ
|
|
516
521
|
moovio_sdk/models/operations/listreceipts.py,sha256=tQmOr0qNz-OAC_6MZv_WSPQoTq_XKXcFdLT3tcvfFY0,2494
|
517
522
|
moovio_sdk/models/operations/listrefunds.py,sha256=sVXcY-yN_NYHfeTeI9cwZR9GC3H2aUkGc9YPxcvjlIE,2708
|
518
523
|
moovio_sdk/models/operations/listrepresentatives.py,sha256=_8WjNSUx2wmZnR5Ggp5RHgPPLg9AEwHFKIOs7McR4BQ,2506
|
519
|
-
moovio_sdk/models/operations/listschedules.py,sha256=
|
524
|
+
moovio_sdk/models/operations/listschedules.py,sha256=EUMVtQGVBLGU8xx56WnfmzVRNzN9GSoxZVwm5bD_IzQ,3077
|
520
525
|
moovio_sdk/models/operations/listsweepconfigs.py,sha256=FyXZ5L01-nF52nj4WCqKEwGEERoZtTzW9KJxnIwb0wA,2410
|
521
526
|
moovio_sdk/models/operations/listsweeps.py,sha256=RcjWsbeutBY68KA1J3NevCjcAgrZOnl60xQA6RWgSdo,3659
|
522
527
|
moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qvn6drroaW5Hfyb7lF2ELdN4Ue-88,2327
|
@@ -555,7 +560,7 @@ moovio_sdk/ping.py,sha256=fYM0yYDBEoo6Do55oNh_mLqelBxKpofv7tOrzVJioOc,9539
|
|
555
560
|
moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
556
561
|
moovio_sdk/receipts.py,sha256=6Hv1amMhDot9ElpMqsGRSQhinmQAN5e79-DFgnKH0dY,21098
|
557
562
|
moovio_sdk/representatives.py,sha256=nmDgxhxxfHtE8Li-F0zk9kUuq33cR9fEibue2zJ6nO0,64454
|
558
|
-
moovio_sdk/scheduling.py,sha256
|
563
|
+
moovio_sdk/scheduling.py,sha256=-i2mkiwWLjz3ZjWEPvO6U6nZwd7V0gxr48r-955li8k,65653
|
559
564
|
moovio_sdk/sdk.py,sha256=J6rXCBZ4_c5GE3duJR9mb2FExgDfFo9Qe2ixxUOXIvw,10045
|
560
565
|
moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-8,1822
|
561
566
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
@@ -576,11 +581,11 @@ moovio_sdk/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHE
|
|
576
581
|
moovio_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
577
582
|
moovio_sdk/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
578
583
|
moovio_sdk/utils/security.py,sha256=BsH7JYMMBVykWbbF_zg6piMh0R8TPidQ8D2_RbzlKs8,6104
|
579
|
-
moovio_sdk/utils/serializers.py,sha256=
|
584
|
+
moovio_sdk/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
|
580
585
|
moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
581
586
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
582
587
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
583
588
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
584
|
-
moovio_sdk-0.3.
|
585
|
-
moovio_sdk-0.3.
|
586
|
-
moovio_sdk-0.3.
|
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,,
|
File without changes
|