moovio_sdk 0.3.21__py3-none-any.whl → 0.3.23__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 -3
- moovio_sdk/models/components/achtransactionstatus.py +1 -0
- moovio_sdk/models/components/createdtransfer.py +129 -0
- moovio_sdk/models/errors/__init__.py +0 -3
- moovio_sdk/models/operations/createreceipts.py +2 -2
- moovio_sdk/models/operations/createtransfer.py +3 -3
- moovio_sdk/models/operations/listreceipts.py +5 -6
- moovio_sdk/receipts.py +14 -20
- moovio_sdk/transfers.py +2 -2
- {moovio_sdk-0.3.21.dist-info → moovio_sdk-0.3.23.dist-info}/METADATA +31 -31
- {moovio_sdk-0.3.21.dist-info → moovio_sdk-0.3.23.dist-info}/RECORD +13 -14
- moovio_sdk/models/components/transferresponse.py +0 -15
- moovio_sdk/models/errors/receiptvalidationerror.py +0 -40
- {moovio_sdk-0.3.21.dist-info → moovio_sdk-0.3.23.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.23"
|
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.568.2"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.23 2.568.2 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -209,6 +209,7 @@ from .createbusinesserror import (
|
|
209
209
|
CreateBusinessErrorTypedDict,
|
210
210
|
)
|
211
211
|
from .createbusinessprofile import CreateBusinessProfile, CreateBusinessProfileTypedDict
|
212
|
+
from .createdtransfer import CreatedTransfer, CreatedTransferTypedDict
|
212
213
|
from .createevidencefilemultipart import (
|
213
214
|
CreateEvidenceFileMultiPart,
|
214
215
|
CreateEvidenceFileMultiPartTypedDict,
|
@@ -650,7 +651,6 @@ from .transferaccount import TransferAccount, TransferAccountTypedDict
|
|
650
651
|
from .transferdestination import TransferDestination, TransferDestinationTypedDict
|
651
652
|
from .transferfailurereason import TransferFailureReason
|
652
653
|
from .transferoptions import TransferOptions, TransferOptionsTypedDict
|
653
|
-
from .transferresponse import TransferResponse, TransferResponseTypedDict
|
654
654
|
from .transfersource import TransferSource, TransferSourceTypedDict
|
655
655
|
from .transferstatus import TransferStatus
|
656
656
|
from .transferwaitfor import TransferWaitFor
|
@@ -984,6 +984,8 @@ __all__ = [
|
|
984
984
|
"CreateTransferSourceCardTypedDict",
|
985
985
|
"CreateTransferSourceTypedDict",
|
986
986
|
"CreateTransferTypedDict",
|
987
|
+
"CreatedTransfer",
|
988
|
+
"CreatedTransferTypedDict",
|
987
989
|
"CustomerSupport",
|
988
990
|
"CustomerSupportError",
|
989
991
|
"CustomerSupportErrorTypedDict",
|
@@ -1378,8 +1380,6 @@ __all__ = [
|
|
1378
1380
|
"TransferFailureReason",
|
1379
1381
|
"TransferOptions",
|
1380
1382
|
"TransferOptionsTypedDict",
|
1381
|
-
"TransferResponse",
|
1382
|
-
"TransferResponseTypedDict",
|
1383
1383
|
"TransferSource",
|
1384
1384
|
"TransferSourceTypedDict",
|
1385
1385
|
"TransferStatus",
|
@@ -0,0 +1,129 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .amount import Amount, AmountTypedDict
|
5
|
+
from .cancellation import Cancellation, CancellationTypedDict
|
6
|
+
from .cardacquiringdispute import CardAcquiringDispute, CardAcquiringDisputeTypedDict
|
7
|
+
from .cardacquiringrefund import CardAcquiringRefund, CardAcquiringRefundTypedDict
|
8
|
+
from .facilitatorfee import FacilitatorFee, FacilitatorFeeTypedDict
|
9
|
+
from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
|
10
|
+
from .transferdestination import TransferDestination, TransferDestinationTypedDict
|
11
|
+
from .transferfailurereason import TransferFailureReason
|
12
|
+
from .transfersource import TransferSource, TransferSourceTypedDict
|
13
|
+
from .transferstatus import TransferStatus
|
14
|
+
from datetime import datetime
|
15
|
+
from moovio_sdk.types import BaseModel
|
16
|
+
import pydantic
|
17
|
+
from typing import Dict, List, Optional
|
18
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
19
|
+
|
20
|
+
|
21
|
+
class CreatedTransferTypedDict(TypedDict):
|
22
|
+
transfer_id: str
|
23
|
+
created_on: datetime
|
24
|
+
source: NotRequired[TransferSourceTypedDict]
|
25
|
+
destination: NotRequired[TransferDestinationTypedDict]
|
26
|
+
completed_on: NotRequired[datetime]
|
27
|
+
status: NotRequired[TransferStatus]
|
28
|
+
r"""Status of a transfer."""
|
29
|
+
failure_reason: NotRequired[TransferFailureReason]
|
30
|
+
r"""Reason for a transfer's failure."""
|
31
|
+
amount: NotRequired[AmountTypedDict]
|
32
|
+
description: NotRequired[str]
|
33
|
+
r"""An optional description of the transfer that is used on receipts and for your own internal use."""
|
34
|
+
metadata: NotRequired[Dict[str, str]]
|
35
|
+
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
36
|
+
facilitator_fee: NotRequired[FacilitatorFeeTypedDict]
|
37
|
+
r"""Total or markup fee."""
|
38
|
+
moov_fee: NotRequired[int]
|
39
|
+
r"""Fees charged to your platform account for transfers."""
|
40
|
+
moov_fee_decimal: NotRequired[str]
|
41
|
+
r"""Same as `moovFee`, but a decimal-formatted numerical string that represents up to 9 decimal place precision."""
|
42
|
+
moov_fee_details: NotRequired[MoovFeeDetailsTypedDict]
|
43
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
44
|
+
group_id: NotRequired[str]
|
45
|
+
cancellations: NotRequired[List[CancellationTypedDict]]
|
46
|
+
refunded_amount: NotRequired[AmountTypedDict]
|
47
|
+
refunds: NotRequired[List[CardAcquiringRefundTypedDict]]
|
48
|
+
disputed_amount: NotRequired[AmountTypedDict]
|
49
|
+
disputes: NotRequired[List[CardAcquiringDisputeTypedDict]]
|
50
|
+
sweep_id: NotRequired[str]
|
51
|
+
schedule_id: NotRequired[str]
|
52
|
+
occurrence_id: NotRequired[str]
|
53
|
+
sales_tax_amount: NotRequired[AmountTypedDict]
|
54
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
55
|
+
|
56
|
+
|
57
|
+
class CreatedTransfer(BaseModel):
|
58
|
+
transfer_id: Annotated[str, pydantic.Field(alias="transferID")]
|
59
|
+
|
60
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
61
|
+
|
62
|
+
source: Optional[TransferSource] = None
|
63
|
+
|
64
|
+
destination: Optional[TransferDestination] = None
|
65
|
+
|
66
|
+
completed_on: Annotated[Optional[datetime], pydantic.Field(alias="completedOn")] = (
|
67
|
+
None
|
68
|
+
)
|
69
|
+
|
70
|
+
status: Optional[TransferStatus] = None
|
71
|
+
r"""Status of a transfer."""
|
72
|
+
|
73
|
+
failure_reason: Annotated[
|
74
|
+
Optional[TransferFailureReason], pydantic.Field(alias="failureReason")
|
75
|
+
] = None
|
76
|
+
r"""Reason for a transfer's failure."""
|
77
|
+
|
78
|
+
amount: Optional[Amount] = None
|
79
|
+
|
80
|
+
description: Optional[str] = None
|
81
|
+
r"""An optional description of the transfer that is used on receipts and for your own internal use."""
|
82
|
+
|
83
|
+
metadata: Optional[Dict[str, str]] = None
|
84
|
+
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
85
|
+
|
86
|
+
facilitator_fee: Annotated[
|
87
|
+
Optional[FacilitatorFee], pydantic.Field(alias="facilitatorFee")
|
88
|
+
] = None
|
89
|
+
r"""Total or markup fee."""
|
90
|
+
|
91
|
+
moov_fee: Annotated[Optional[int], pydantic.Field(alias="moovFee")] = None
|
92
|
+
r"""Fees charged to your platform account for transfers."""
|
93
|
+
|
94
|
+
moov_fee_decimal: Annotated[
|
95
|
+
Optional[str], pydantic.Field(alias="moovFeeDecimal")
|
96
|
+
] = None
|
97
|
+
r"""Same as `moovFee`, but a decimal-formatted numerical string that represents up to 9 decimal place precision."""
|
98
|
+
|
99
|
+
moov_fee_details: Annotated[
|
100
|
+
Optional[MoovFeeDetails], pydantic.Field(alias="moovFeeDetails")
|
101
|
+
] = None
|
102
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
103
|
+
|
104
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupID")] = None
|
105
|
+
|
106
|
+
cancellations: Optional[List[Cancellation]] = None
|
107
|
+
|
108
|
+
refunded_amount: Annotated[
|
109
|
+
Optional[Amount], pydantic.Field(alias="refundedAmount")
|
110
|
+
] = None
|
111
|
+
|
112
|
+
refunds: Optional[List[CardAcquiringRefund]] = None
|
113
|
+
|
114
|
+
disputed_amount: Annotated[
|
115
|
+
Optional[Amount], pydantic.Field(alias="disputedAmount")
|
116
|
+
] = None
|
117
|
+
|
118
|
+
disputes: Optional[List[CardAcquiringDispute]] = None
|
119
|
+
|
120
|
+
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
121
|
+
|
122
|
+
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
123
|
+
|
124
|
+
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
125
|
+
|
126
|
+
sales_tax_amount: Annotated[
|
127
|
+
Optional[Amount], pydantic.Field(alias="salesTaxAmount")
|
128
|
+
] = None
|
129
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
@@ -30,7 +30,6 @@ from .microdepositvalidationerror import (
|
|
30
30
|
)
|
31
31
|
from .onboardinginviteerror import OnboardingInviteError, OnboardingInviteErrorData
|
32
32
|
from .patchsweepconfigerror import PatchSweepConfigError, PatchSweepConfigErrorData
|
33
|
-
from .receiptvalidationerror import ReceiptValidationError, ReceiptValidationErrorData
|
34
33
|
from .refundvalidationerror import RefundValidationError, RefundValidationErrorData
|
35
34
|
from .representativevalidationerror import (
|
36
35
|
Error,
|
@@ -118,8 +117,6 @@ __all__ = [
|
|
118
117
|
"OnboardingInviteErrorData",
|
119
118
|
"PatchSweepConfigError",
|
120
119
|
"PatchSweepConfigErrorData",
|
121
|
-
"ReceiptValidationError",
|
122
|
-
"ReceiptValidationErrorData",
|
123
120
|
"RefundValidationError",
|
124
121
|
"RefundValidationErrorData",
|
125
122
|
"RepresentativeValidationError",
|
@@ -43,10 +43,10 @@ class CreateReceiptsGlobals(BaseModel):
|
|
43
43
|
|
44
44
|
class CreateReceiptsResponseTypedDict(TypedDict):
|
45
45
|
headers: Dict[str, List[str]]
|
46
|
-
result: components_receiptresponse.ReceiptResponseTypedDict
|
46
|
+
result: List[components_receiptresponse.ReceiptResponseTypedDict]
|
47
47
|
|
48
48
|
|
49
49
|
class CreateReceiptsResponse(BaseModel):
|
50
50
|
headers: Dict[str, List[str]]
|
51
51
|
|
52
|
-
result: components_receiptresponse.ReceiptResponse
|
52
|
+
result: List[components_receiptresponse.ReceiptResponse]
|
@@ -3,9 +3,9 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from moovio_sdk.models.components import (
|
5
5
|
asynctransfer as components_asynctransfer,
|
6
|
+
createdtransfer as components_createdtransfer,
|
6
7
|
createtransfer as components_createtransfer,
|
7
8
|
transfer as components_transfer,
|
8
|
-
transferresponse as components_transferresponse,
|
9
9
|
transferwaitfor as components_transferwaitfor,
|
10
10
|
)
|
11
11
|
from moovio_sdk.types import BaseModel
|
@@ -98,8 +98,8 @@ CreateTransferResponseResultTypedDict = TypeAliasType(
|
|
98
98
|
"CreateTransferResponseResultTypedDict",
|
99
99
|
Union[
|
100
100
|
components_asynctransfer.AsyncTransferTypedDict,
|
101
|
+
components_createdtransfer.CreatedTransferTypedDict,
|
101
102
|
components_transfer.TransferTypedDict,
|
102
|
-
components_transferresponse.TransferResponseTypedDict,
|
103
103
|
],
|
104
104
|
)
|
105
105
|
|
@@ -108,8 +108,8 @@ CreateTransferResponseResult = TypeAliasType(
|
|
108
108
|
"CreateTransferResponseResult",
|
109
109
|
Union[
|
110
110
|
components_asynctransfer.AsyncTransfer,
|
111
|
+
components_createdtransfer.CreatedTransfer,
|
111
112
|
components_transfer.Transfer,
|
112
|
-
components_transferresponse.TransferResponse,
|
113
113
|
],
|
114
114
|
)
|
115
115
|
|
@@ -42,16 +42,15 @@ class ListReceiptsGlobals(BaseModel):
|
|
42
42
|
|
43
43
|
|
44
44
|
class ListReceiptsRequestTypedDict(TypedDict):
|
45
|
-
id:
|
46
|
-
r"""The
|
45
|
+
id: str
|
46
|
+
r"""The transfer, schedule, or transfer occurrence ID to filter receipts by."""
|
47
47
|
|
48
48
|
|
49
49
|
class ListReceiptsRequest(BaseModel):
|
50
50
|
id: Annotated[
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
r"""The unique identifier to filter receipts by."""
|
51
|
+
str, FieldMetadata(query=QueryParamMetadata(style="form", explode=False))
|
52
|
+
]
|
53
|
+
r"""The transfer, schedule, or transfer occurrence ID to filter receipts by."""
|
55
54
|
|
56
55
|
|
57
56
|
class ListReceiptsResponseTypedDict(TypedDict):
|
moovio_sdk/receipts.py
CHANGED
@@ -105,18 +105,15 @@ class Receipts(BaseSDK):
|
|
105
105
|
response_data: Any = None
|
106
106
|
if utils.match_response(http_res, "201", "application/json"):
|
107
107
|
return operations.CreateReceiptsResponse(
|
108
|
-
result=utils.unmarshal_json(
|
108
|
+
result=utils.unmarshal_json(
|
109
|
+
http_res.text, List[components.ReceiptResponse]
|
110
|
+
),
|
109
111
|
headers=utils.get_response_headers(http_res.headers),
|
110
112
|
)
|
111
113
|
if utils.match_response(http_res, ["400", "409"], "application/json"):
|
112
114
|
response_data = utils.unmarshal_json(http_res.text, errors.GenericErrorData)
|
113
115
|
raise errors.GenericError(data=response_data)
|
114
|
-
if utils.match_response(http_res, "422", "
|
115
|
-
response_data = utils.unmarshal_json(
|
116
|
-
http_res.text, errors.ReceiptValidationErrorData
|
117
|
-
)
|
118
|
-
raise errors.ReceiptValidationError(data=response_data)
|
119
|
-
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
116
|
+
if utils.match_response(http_res, ["401", "403", "404", "422", "429"], "*"):
|
120
117
|
http_res_text = utils.stream_to_text(http_res)
|
121
118
|
raise errors.APIError(
|
122
119
|
"API error occurred", http_res.status_code, http_res_text, http_res
|
@@ -241,18 +238,15 @@ class Receipts(BaseSDK):
|
|
241
238
|
response_data: Any = None
|
242
239
|
if utils.match_response(http_res, "201", "application/json"):
|
243
240
|
return operations.CreateReceiptsResponse(
|
244
|
-
result=utils.unmarshal_json(
|
241
|
+
result=utils.unmarshal_json(
|
242
|
+
http_res.text, List[components.ReceiptResponse]
|
243
|
+
),
|
245
244
|
headers=utils.get_response_headers(http_res.headers),
|
246
245
|
)
|
247
246
|
if utils.match_response(http_res, ["400", "409"], "application/json"):
|
248
247
|
response_data = utils.unmarshal_json(http_res.text, errors.GenericErrorData)
|
249
248
|
raise errors.GenericError(data=response_data)
|
250
|
-
if utils.match_response(http_res, "422", "
|
251
|
-
response_data = utils.unmarshal_json(
|
252
|
-
http_res.text, errors.ReceiptValidationErrorData
|
253
|
-
)
|
254
|
-
raise errors.ReceiptValidationError(data=response_data)
|
255
|
-
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
249
|
+
if utils.match_response(http_res, ["401", "403", "404", "422", "429"], "*"):
|
256
250
|
http_res_text = await utils.stream_to_text_async(http_res)
|
257
251
|
raise errors.APIError(
|
258
252
|
"API error occurred", http_res.status_code, http_res_text, http_res
|
@@ -285,18 +279,18 @@ class Receipts(BaseSDK):
|
|
285
279
|
def list(
|
286
280
|
self,
|
287
281
|
*,
|
288
|
-
id:
|
282
|
+
id: str,
|
289
283
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
290
284
|
server_url: Optional[str] = None,
|
291
285
|
timeout_ms: Optional[int] = None,
|
292
286
|
http_headers: Optional[Mapping[str, str]] = None,
|
293
287
|
) -> operations.ListReceiptsResponse:
|
294
|
-
r"""List receipts by
|
288
|
+
r"""List receipts by transferID, scheduleID, or occurrenceID.
|
295
289
|
|
296
290
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
297
291
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
298
292
|
|
299
|
-
:param id: The
|
293
|
+
:param id: The transfer, schedule, or transfer occurrence ID to filter receipts by.
|
300
294
|
:param retries: Override the default retry configuration for this method
|
301
295
|
:param server_url: Override the default server URL for this method
|
302
296
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
@@ -397,18 +391,18 @@ class Receipts(BaseSDK):
|
|
397
391
|
async def list_async(
|
398
392
|
self,
|
399
393
|
*,
|
400
|
-
id:
|
394
|
+
id: str,
|
401
395
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
402
396
|
server_url: Optional[str] = None,
|
403
397
|
timeout_ms: Optional[int] = None,
|
404
398
|
http_headers: Optional[Mapping[str, str]] = None,
|
405
399
|
) -> operations.ListReceiptsResponse:
|
406
|
-
r"""List receipts by
|
400
|
+
r"""List receipts by transferID, scheduleID, or occurrenceID.
|
407
401
|
|
408
402
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
409
403
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
410
404
|
|
411
|
-
:param id: The
|
405
|
+
:param id: The transfer, schedule, or transfer occurrence ID to filter receipts by.
|
412
406
|
:param retries: Override the default retry configuration for this method
|
413
407
|
:param server_url: Override the default server URL for this method
|
414
408
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
moovio_sdk/transfers.py
CHANGED
@@ -150,7 +150,7 @@ class Transfers(BaseSDK):
|
|
150
150
|
response_data: Any = None
|
151
151
|
if utils.match_response(http_res, "200", "application/json"):
|
152
152
|
return operations.CreateTransferResponse(
|
153
|
-
result=utils.unmarshal_json(http_res.text, components.
|
153
|
+
result=utils.unmarshal_json(http_res.text, components.CreatedTransfer),
|
154
154
|
headers=utils.get_response_headers(http_res.headers),
|
155
155
|
)
|
156
156
|
if utils.match_response(http_res, "201", "application/json"):
|
@@ -343,7 +343,7 @@ class Transfers(BaseSDK):
|
|
343
343
|
response_data: Any = None
|
344
344
|
if utils.match_response(http_res, "200", "application/json"):
|
345
345
|
return operations.CreateTransferResponse(
|
346
|
-
result=utils.unmarshal_json(http_res.text, components.
|
346
|
+
result=utils.unmarshal_json(http_res.text, components.CreatedTransfer),
|
347
347
|
headers=utils.get_response_headers(http_res.headers),
|
348
348
|
)
|
349
349
|
if utils.match_response(http_res, "201", "application/json"):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.23
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9
|
@@ -152,8 +152,8 @@ with Moov(
|
|
152
152
|
individual=components.CreateIndividualProfile(
|
153
153
|
name=components.IndividualName(
|
154
154
|
first_name="Jordan",
|
155
|
-
last_name="Lee",
|
156
155
|
middle_name="Reese",
|
156
|
+
last_name="Lee",
|
157
157
|
suffix="Jr",
|
158
158
|
),
|
159
159
|
phone=components.PhoneNumber(
|
@@ -163,11 +163,11 @@ with Moov(
|
|
163
163
|
email="jordan.lee@classbooker.dev",
|
164
164
|
address=components.Address(
|
165
165
|
address_line1="123 Main Street",
|
166
|
+
address_line2="Apt 302",
|
166
167
|
city="Boulder",
|
167
168
|
state_or_province="CO",
|
168
169
|
postal_code="80301",
|
169
170
|
country="US",
|
170
|
-
address_line2="Apt 302",
|
171
171
|
),
|
172
172
|
birth_date=components.BirthDate(
|
173
173
|
day=9,
|
@@ -180,11 +180,11 @@ with Moov(
|
|
180
180
|
business_type=components.BusinessType.LLC,
|
181
181
|
address=components.Address(
|
182
182
|
address_line1="123 Main Street",
|
183
|
+
address_line2="Apt 302",
|
183
184
|
city="Boulder",
|
184
185
|
state_or_province="CO",
|
185
186
|
postal_code="80301",
|
186
187
|
country="US",
|
187
|
-
address_line2="Apt 302",
|
188
188
|
),
|
189
189
|
phone=components.PhoneNumber(
|
190
190
|
number="8185551212",
|
@@ -215,11 +215,11 @@ with Moov(
|
|
215
215
|
"email": "jordan.lee@classbooker.dev",
|
216
216
|
"address": {
|
217
217
|
"address_line1": "123 Main Street",
|
218
|
+
"address_line2": "Apt 302",
|
218
219
|
"city": "Boulder",
|
219
220
|
"state_or_province": "CO",
|
220
221
|
"postal_code": "80301",
|
221
222
|
"country": "US",
|
222
|
-
"address_line2": "Apt 302",
|
223
223
|
},
|
224
224
|
}, settings={
|
225
225
|
"card_payment": {
|
@@ -256,8 +256,8 @@ async def main():
|
|
256
256
|
individual=components.CreateIndividualProfile(
|
257
257
|
name=components.IndividualName(
|
258
258
|
first_name="Jordan",
|
259
|
-
last_name="Lee",
|
260
259
|
middle_name="Reese",
|
260
|
+
last_name="Lee",
|
261
261
|
suffix="Jr",
|
262
262
|
),
|
263
263
|
phone=components.PhoneNumber(
|
@@ -267,11 +267,11 @@ async def main():
|
|
267
267
|
email="jordan.lee@classbooker.dev",
|
268
268
|
address=components.Address(
|
269
269
|
address_line1="123 Main Street",
|
270
|
+
address_line2="Apt 302",
|
270
271
|
city="Boulder",
|
271
272
|
state_or_province="CO",
|
272
273
|
postal_code="80301",
|
273
274
|
country="US",
|
274
|
-
address_line2="Apt 302",
|
275
275
|
),
|
276
276
|
birth_date=components.BirthDate(
|
277
277
|
day=9,
|
@@ -284,11 +284,11 @@ async def main():
|
|
284
284
|
business_type=components.BusinessType.LLC,
|
285
285
|
address=components.Address(
|
286
286
|
address_line1="123 Main Street",
|
287
|
+
address_line2="Apt 302",
|
287
288
|
city="Boulder",
|
288
289
|
state_or_province="CO",
|
289
290
|
postal_code="80301",
|
290
291
|
country="US",
|
291
|
-
address_line2="Apt 302",
|
292
292
|
),
|
293
293
|
phone=components.PhoneNumber(
|
294
294
|
number="8185551212",
|
@@ -319,11 +319,11 @@ async def main():
|
|
319
319
|
"email": "jordan.lee@classbooker.dev",
|
320
320
|
"address": {
|
321
321
|
"address_line1": "123 Main Street",
|
322
|
+
"address_line2": "Apt 302",
|
322
323
|
"city": "Boulder",
|
323
324
|
"state_or_province": "CO",
|
324
325
|
"postal_code": "80301",
|
325
326
|
"country": "US",
|
326
|
-
"address_line2": "Apt 302",
|
327
327
|
},
|
328
328
|
}, settings={
|
329
329
|
"card_payment": {
|
@@ -369,8 +369,8 @@ with Moov(
|
|
369
369
|
individual=components.CreateIndividualProfile(
|
370
370
|
name=components.IndividualName(
|
371
371
|
first_name="Jordan",
|
372
|
-
last_name="Lee",
|
373
372
|
middle_name="Reese",
|
373
|
+
last_name="Lee",
|
374
374
|
suffix="Jr",
|
375
375
|
),
|
376
376
|
phone=components.PhoneNumber(
|
@@ -380,11 +380,11 @@ with Moov(
|
|
380
380
|
email="jordan.lee@classbooker.dev",
|
381
381
|
address=components.Address(
|
382
382
|
address_line1="123 Main Street",
|
383
|
+
address_line2="Apt 302",
|
383
384
|
city="Boulder",
|
384
385
|
state_or_province="CO",
|
385
386
|
postal_code="80301",
|
386
387
|
country="US",
|
387
|
-
address_line2="Apt 302",
|
388
388
|
),
|
389
389
|
birth_date=components.BirthDate(
|
390
390
|
day=9,
|
@@ -397,11 +397,11 @@ with Moov(
|
|
397
397
|
business_type=components.BusinessType.LLC,
|
398
398
|
address=components.Address(
|
399
399
|
address_line1="123 Main Street",
|
400
|
+
address_line2="Apt 302",
|
400
401
|
city="Boulder",
|
401
402
|
state_or_province="CO",
|
402
403
|
postal_code="80301",
|
403
404
|
country="US",
|
404
|
-
address_line2="Apt 302",
|
405
405
|
),
|
406
406
|
phone=components.PhoneNumber(
|
407
407
|
number="8185551212",
|
@@ -432,11 +432,11 @@ with Moov(
|
|
432
432
|
"email": "jordan.lee@classbooker.dev",
|
433
433
|
"address": {
|
434
434
|
"address_line1": "123 Main Street",
|
435
|
+
"address_line2": "Apt 302",
|
435
436
|
"city": "Boulder",
|
436
437
|
"state_or_province": "CO",
|
437
438
|
"postal_code": "80301",
|
438
439
|
"country": "US",
|
439
|
-
"address_line2": "Apt 302",
|
440
440
|
},
|
441
441
|
}, settings={
|
442
442
|
"card_payment": {
|
@@ -1048,7 +1048,7 @@ you'll need to specify the `/ping.read` scope.
|
|
1048
1048
|
|
1049
1049
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1050
1050
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
1051
|
-
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md#list) - List receipts by
|
1051
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md#list) - List receipts by transferID, scheduleID, or occurrenceID.
|
1052
1052
|
|
1053
1053
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1054
1054
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -1313,7 +1313,7 @@ with Moov(
|
|
1313
1313
|
),
|
1314
1314
|
) as moov:
|
1315
1315
|
|
1316
|
-
res = moov.disputes.upload_evidence_file(account_id="
|
1316
|
+
res = moov.disputes.upload_evidence_file(account_id="190d267b-ea77-4231-9939-ba89cb7df82b", dispute_id="94aabddc-d855-40e6-ab0a-1e547e0dcc9d", file={
|
1317
1317
|
"file_name": "example.file",
|
1318
1318
|
"content": open("example.file", "rb"),
|
1319
1319
|
}, evidence_type=components.EvidenceType.CUSTOMER_COMMUNICATION)
|
@@ -1347,8 +1347,8 @@ with Moov(
|
|
1347
1347
|
individual=components.CreateIndividualProfile(
|
1348
1348
|
name=components.IndividualName(
|
1349
1349
|
first_name="Jordan",
|
1350
|
-
last_name="Lee",
|
1351
1350
|
middle_name="Reese",
|
1351
|
+
last_name="Lee",
|
1352
1352
|
suffix="Jr",
|
1353
1353
|
),
|
1354
1354
|
phone=components.PhoneNumber(
|
@@ -1358,11 +1358,11 @@ with Moov(
|
|
1358
1358
|
email="jordan.lee@classbooker.dev",
|
1359
1359
|
address=components.Address(
|
1360
1360
|
address_line1="123 Main Street",
|
1361
|
+
address_line2="Apt 302",
|
1361
1362
|
city="Boulder",
|
1362
1363
|
state_or_province="CO",
|
1363
1364
|
postal_code="80301",
|
1364
1365
|
country="US",
|
1365
|
-
address_line2="Apt 302",
|
1366
1366
|
),
|
1367
1367
|
birth_date=components.BirthDate(
|
1368
1368
|
day=9,
|
@@ -1375,11 +1375,11 @@ with Moov(
|
|
1375
1375
|
business_type=components.BusinessType.LLC,
|
1376
1376
|
address=components.Address(
|
1377
1377
|
address_line1="123 Main Street",
|
1378
|
+
address_line2="Apt 302",
|
1378
1379
|
city="Boulder",
|
1379
1380
|
state_or_province="CO",
|
1380
1381
|
postal_code="80301",
|
1381
1382
|
country="US",
|
1382
|
-
address_line2="Apt 302",
|
1383
1383
|
),
|
1384
1384
|
phone=components.PhoneNumber(
|
1385
1385
|
number="8185551212",
|
@@ -1410,11 +1410,11 @@ with Moov(
|
|
1410
1410
|
"email": "jordan.lee@classbooker.dev",
|
1411
1411
|
"address": {
|
1412
1412
|
"address_line1": "123 Main Street",
|
1413
|
+
"address_line2": "Apt 302",
|
1413
1414
|
"city": "Boulder",
|
1414
1415
|
"state_or_province": "CO",
|
1415
1416
|
"postal_code": "80301",
|
1416
1417
|
"country": "US",
|
1417
|
-
"address_line2": "Apt 302",
|
1418
1418
|
},
|
1419
1419
|
}, settings={
|
1420
1420
|
"card_payment": {
|
@@ -1450,8 +1450,8 @@ with Moov(
|
|
1450
1450
|
individual=components.CreateIndividualProfile(
|
1451
1451
|
name=components.IndividualName(
|
1452
1452
|
first_name="Jordan",
|
1453
|
-
last_name="Lee",
|
1454
1453
|
middle_name="Reese",
|
1454
|
+
last_name="Lee",
|
1455
1455
|
suffix="Jr",
|
1456
1456
|
),
|
1457
1457
|
phone=components.PhoneNumber(
|
@@ -1461,11 +1461,11 @@ with Moov(
|
|
1461
1461
|
email="jordan.lee@classbooker.dev",
|
1462
1462
|
address=components.Address(
|
1463
1463
|
address_line1="123 Main Street",
|
1464
|
+
address_line2="Apt 302",
|
1464
1465
|
city="Boulder",
|
1465
1466
|
state_or_province="CO",
|
1466
1467
|
postal_code="80301",
|
1467
1468
|
country="US",
|
1468
|
-
address_line2="Apt 302",
|
1469
1469
|
),
|
1470
1470
|
birth_date=components.BirthDate(
|
1471
1471
|
day=9,
|
@@ -1478,11 +1478,11 @@ with Moov(
|
|
1478
1478
|
business_type=components.BusinessType.LLC,
|
1479
1479
|
address=components.Address(
|
1480
1480
|
address_line1="123 Main Street",
|
1481
|
+
address_line2="Apt 302",
|
1481
1482
|
city="Boulder",
|
1482
1483
|
state_or_province="CO",
|
1483
1484
|
postal_code="80301",
|
1484
1485
|
country="US",
|
1485
|
-
address_line2="Apt 302",
|
1486
1486
|
),
|
1487
1487
|
phone=components.PhoneNumber(
|
1488
1488
|
number="8185551212",
|
@@ -1513,11 +1513,11 @@ with Moov(
|
|
1513
1513
|
"email": "jordan.lee@classbooker.dev",
|
1514
1514
|
"address": {
|
1515
1515
|
"address_line1": "123 Main Street",
|
1516
|
+
"address_line2": "Apt 302",
|
1516
1517
|
"city": "Boulder",
|
1517
1518
|
"state_or_province": "CO",
|
1518
1519
|
"postal_code": "80301",
|
1519
1520
|
"country": "US",
|
1520
|
-
"address_line2": "Apt 302",
|
1521
1521
|
},
|
1522
1522
|
}, settings={
|
1523
1523
|
"card_payment": {
|
@@ -1576,8 +1576,8 @@ with Moov(
|
|
1576
1576
|
individual=components.CreateIndividualProfile(
|
1577
1577
|
name=components.IndividualName(
|
1578
1578
|
first_name="Jordan",
|
1579
|
-
last_name="Lee",
|
1580
1579
|
middle_name="Reese",
|
1580
|
+
last_name="Lee",
|
1581
1581
|
suffix="Jr",
|
1582
1582
|
),
|
1583
1583
|
phone=components.PhoneNumber(
|
@@ -1587,11 +1587,11 @@ with Moov(
|
|
1587
1587
|
email="jordan.lee@classbooker.dev",
|
1588
1588
|
address=components.Address(
|
1589
1589
|
address_line1="123 Main Street",
|
1590
|
+
address_line2="Apt 302",
|
1590
1591
|
city="Boulder",
|
1591
1592
|
state_or_province="CO",
|
1592
1593
|
postal_code="80301",
|
1593
1594
|
country="US",
|
1594
|
-
address_line2="Apt 302",
|
1595
1595
|
),
|
1596
1596
|
birth_date=components.BirthDate(
|
1597
1597
|
day=9,
|
@@ -1604,11 +1604,11 @@ with Moov(
|
|
1604
1604
|
business_type=components.BusinessType.LLC,
|
1605
1605
|
address=components.Address(
|
1606
1606
|
address_line1="123 Main Street",
|
1607
|
+
address_line2="Apt 302",
|
1607
1608
|
city="Boulder",
|
1608
1609
|
state_or_province="CO",
|
1609
1610
|
postal_code="80301",
|
1610
1611
|
country="US",
|
1611
|
-
address_line2="Apt 302",
|
1612
1612
|
),
|
1613
1613
|
phone=components.PhoneNumber(
|
1614
1614
|
number="8185551212",
|
@@ -1639,11 +1639,11 @@ with Moov(
|
|
1639
1639
|
"email": "jordan.lee@classbooker.dev",
|
1640
1640
|
"address": {
|
1641
1641
|
"address_line1": "123 Main Street",
|
1642
|
+
"address_line2": "Apt 302",
|
1642
1643
|
"city": "Boulder",
|
1643
1644
|
"state_or_province": "CO",
|
1644
1645
|
"postal_code": "80301",
|
1645
1646
|
"country": "US",
|
1646
|
-
"address_line2": "Apt 302",
|
1647
1647
|
},
|
1648
1648
|
}, settings={
|
1649
1649
|
"card_payment": {
|
@@ -1692,8 +1692,8 @@ with Moov(
|
|
1692
1692
|
individual=components.CreateIndividualProfile(
|
1693
1693
|
name=components.IndividualName(
|
1694
1694
|
first_name="Jordan",
|
1695
|
-
last_name="Lee",
|
1696
1695
|
middle_name="Reese",
|
1696
|
+
last_name="Lee",
|
1697
1697
|
suffix="Jr",
|
1698
1698
|
),
|
1699
1699
|
phone=components.PhoneNumber(
|
@@ -1703,11 +1703,11 @@ with Moov(
|
|
1703
1703
|
email="jordan.lee@classbooker.dev",
|
1704
1704
|
address=components.Address(
|
1705
1705
|
address_line1="123 Main Street",
|
1706
|
+
address_line2="Apt 302",
|
1706
1707
|
city="Boulder",
|
1707
1708
|
state_or_province="CO",
|
1708
1709
|
postal_code="80301",
|
1709
1710
|
country="US",
|
1710
|
-
address_line2="Apt 302",
|
1711
1711
|
),
|
1712
1712
|
birth_date=components.BirthDate(
|
1713
1713
|
day=9,
|
@@ -1720,11 +1720,11 @@ with Moov(
|
|
1720
1720
|
business_type=components.BusinessType.LLC,
|
1721
1721
|
address=components.Address(
|
1722
1722
|
address_line1="123 Main Street",
|
1723
|
+
address_line2="Apt 302",
|
1723
1724
|
city="Boulder",
|
1724
1725
|
state_or_province="CO",
|
1725
1726
|
postal_code="80301",
|
1726
1727
|
country="US",
|
1727
|
-
address_line2="Apt 302",
|
1728
1728
|
),
|
1729
1729
|
phone=components.PhoneNumber(
|
1730
1730
|
number="8185551212",
|
@@ -1755,11 +1755,11 @@ with Moov(
|
|
1755
1755
|
"email": "jordan.lee@classbooker.dev",
|
1756
1756
|
"address": {
|
1757
1757
|
"address_line1": "123 Main Street",
|
1758
|
+
"address_line2": "Apt 302",
|
1758
1759
|
"city": "Boulder",
|
1759
1760
|
"state_or_province": "CO",
|
1760
1761
|
"postal_code": "80301",
|
1761
1762
|
"country": "US",
|
1762
|
-
"address_line2": "Apt 302",
|
1763
1763
|
},
|
1764
1764
|
}, settings={
|
1765
1765
|
"card_payment": {
|
@@ -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=HgWpNBOZWAM29fgnqkDSErfjGcdJQMmn90nlUgvkl4Y,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=kvWr8cv23UUDf9u5d4Ov9XJ85Ri7D4kZIIE8lWBts0M,51899
|
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
|
@@ -45,7 +45,7 @@ moovio_sdk/models/components/achpaymentdetailserror.py,sha256=ZPU2oSIa0GuU2FqejX
|
|
45
45
|
moovio_sdk/models/components/achpaymentsettings.py,sha256=NDRT6AGaMHZ5DftAZ9S5W_4SzGTr9ZOAjctoMwD5fhk,655
|
46
46
|
moovio_sdk/models/components/achreturncode.py,sha256=DWYptOBarqjdzXqGJAVftGmcOELN7yUqRua7PZoMnWE,1575
|
47
47
|
moovio_sdk/models/components/achtransactiondetails.py,sha256=UQ-HgOOUh6mSf4V_ixDkl5A68PfBhUu7SM3VCQhlk5U,3631
|
48
|
-
moovio_sdk/models/components/achtransactionstatus.py,sha256=
|
48
|
+
moovio_sdk/models/components/achtransactionstatus.py,sha256=m0rdMWenfP0B7mFm6k8mVLSFmoDmh0ISf5uhRBsif9U,416
|
49
49
|
moovio_sdk/models/components/addcapabilities.py,sha256=Ani2_j12AUScE0OYTeYX3AgJXuGhPUt_M4y_DeonAmU,405
|
50
50
|
moovio_sdk/models/components/address.py,sha256=Ab_UfD23U0oRBTyvjIWanhdiG3NlYqqBcHQRjiw9iyk,802
|
51
51
|
moovio_sdk/models/components/addresserror.py,sha256=-1J-7hhVRJ4ikihl4J-yLT7IzDFMJltSSk2js-d_RSY,976
|
@@ -139,6 +139,7 @@ moovio_sdk/models/components/createauthorizedusererror.py,sha256=esLjn87FfadlgHb
|
|
139
139
|
moovio_sdk/models/components/createauthorizeduserupdate.py,sha256=efRwyAfTzZVp1GNdUIagkpzr3rN17SSJ4-E7Y3596ys,945
|
140
140
|
moovio_sdk/models/components/createbusinesserror.py,sha256=qnDwlpaC2y1c6cD9XmRvsU65VAnFEuvvW2qimrCaZU4,2489
|
141
141
|
moovio_sdk/models/components/createbusinessprofile.py,sha256=OGo1xgFTf5C-TNEsdSnVEeLaEfaGVWYrdC64MXIqShc,2800
|
142
|
+
moovio_sdk/models/components/createdtransfer.py,sha256=oh0Rs8w6f5_x7HDs1uGi0KfPw8JWKqeOgMbVqcXiIks,5447
|
142
143
|
moovio_sdk/models/components/createevidencefilemultipart.py,sha256=GYb0qHNt0TStHTs7jrEoPxxXPuSTrV473-zNe0SoXsU,1895
|
143
144
|
moovio_sdk/models/components/createevidencetext.py,sha256=IxJdhf131DDpBgHdD2PramkohfKR5kQ5uXKKJ5TB5GQ,608
|
144
145
|
moovio_sdk/models/components/createfeeplanagreement.py,sha256=FK4oIE4nZl2JbKRnzXL_3nlbVxzY9fR7_Cy9Nrg9J1o,386
|
@@ -356,7 +357,6 @@ moovio_sdk/models/components/transferaccount.py,sha256=-gIji284RTf4FI8BUomUHEMVm
|
|
356
357
|
moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30sid-1Inq4L0VoCaxvUkIhc,3389
|
357
358
|
moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
|
358
359
|
moovio_sdk/models/components/transferoptions.py,sha256=7BEWfTTzxMR-5rcrwLDfMVf7IQ1XSQxU_WL7mYtHTNs,789
|
359
|
-
moovio_sdk/models/components/transferresponse.py,sha256=RfFQUsFEY6l5Rk0DjgBf09IQ9PdHgn4NSXf1AMmrvaM,508
|
360
360
|
moovio_sdk/models/components/transfersource.py,sha256=ZpdfQGsPS8k_MPaYMIi-6AxvdZs1wbJ-xi7UeA43ST0,3662
|
361
361
|
moovio_sdk/models/components/transferstatus.py,sha256=rw0RiqIZ2N0fhu3f7WKeJ919EBtFvYUQ0h4YbRx9XD4,371
|
362
362
|
moovio_sdk/models/components/transferwaitfor.py,sha256=rdjiNuV5J78oqxQ6v954xNnOwcyhmh9Mgo7YCrBUoXA,202
|
@@ -386,7 +386,7 @@ moovio_sdk/models/components/wallettransaction.py,sha256=oVx_Vtmw0UmSGk_Mdw_DeFp
|
|
386
386
|
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=Mh549qh9Sbr1QPOHZdyJAjhbdlcTP6uZS3ygHdALx5E,404
|
387
387
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
388
388
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=EiiCvg2dF1cYIIZ-5E-zzsrlJzr9rGL-le6Iz8kTD8w,1058
|
389
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
389
|
+
moovio_sdk/models/errors/__init__.py,sha256=KjBMjfOHP0077NTDVcIHP3WL3atIwL0U-ZTKOdOLjMI,5379
|
390
390
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=kdp29Khv0aN1bgoa7RXQxbFKDpGcXlPcwHID0JC1Mjw,684
|
391
391
|
moovio_sdk/models/errors/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
392
392
|
moovio_sdk/models/errors/assigncountrieserror.py,sha256=Zqd5o1rwkG7LuXxVJpvJ1olPsqsKCxD1ff9p8-U75qo,622
|
@@ -406,7 +406,6 @@ moovio_sdk/models/errors/linkcarderror.py,sha256=g52SOpCeNUKGjE940bq3QW6CX8WIPT0
|
|
406
406
|
moovio_sdk/models/errors/microdepositvalidationerror.py,sha256=j8Ns_X7EBxKhPdKzZGxGtCEaeLLUQLiatWv_OUplAN0,578
|
407
407
|
moovio_sdk/models/errors/onboardinginviteerror.py,sha256=2SsBK61hXQL_D_SMBBzBDHIHJWDN5uqUsMGwhrpeSAo,987
|
408
408
|
moovio_sdk/models/errors/patchsweepconfigerror.py,sha256=fKaysXabUJmUaySWXyyCShri3i9Lz5HnFqIbs2rdmLA,1069
|
409
|
-
moovio_sdk/models/errors/receiptvalidationerror.py,sha256=kZOKNBdXHde-5nfdayVdcqQx0J8zVFARHU3VtrLLDiM,1077
|
410
409
|
moovio_sdk/models/errors/refundvalidationerror.py,sha256=-IuJ_jUvEVhrt-xX80MWbfdW8yRRxBGoEEw_CkYiSdI,685
|
411
410
|
moovio_sdk/models/errors/representativevalidationerror.py,sha256=u-gF0hBB-NxuGNK1tZRoTMSYjw2SpwAjeWoqhiD_gbM,2442
|
412
411
|
moovio_sdk/models/errors/requestcarderror.py,sha256=Mh7azS9L5pPbRu2gcEI0XLsJ_gUVxMTAb4Xifn-E3EA,1355
|
@@ -438,13 +437,13 @@ moovio_sdk/models/operations/createcancellation.py,sha256=a_qyAQqojgzzCVX_tZ0IIS
|
|
438
437
|
moovio_sdk/models/operations/createfeeplanagreements.py,sha256=uaUnzhbsMrkIpSJwXeVHNQ0Ydvyai-lWTqYT5zsuS5E,2889
|
439
438
|
moovio_sdk/models/operations/createonboardinginvite.py,sha256=7UqLeWWUpNoxhdIVo96rhsnPW2LeceUMO7Sd30Ps0yI,2149
|
440
439
|
moovio_sdk/models/operations/createpaymentlink.py,sha256=X7nqaUI7Gn0lYZ3ixtHC0Yf0cN707S2bf_ORjqtN8go,2765
|
441
|
-
moovio_sdk/models/operations/createreceipts.py,sha256=
|
440
|
+
moovio_sdk/models/operations/createreceipts.py,sha256=3h9Q8GZVq1kRa3-5PJDhCrzpBvTPALgHtVyF2tZKo-A,2123
|
442
441
|
moovio_sdk/models/operations/createrepresentative.py,sha256=Quz9O6hJWJCs42szxIlTETb9-jLoTTTBBdOfuG8komw,2883
|
443
442
|
moovio_sdk/models/operations/createreversal.py,sha256=nQIIp68Itf7mtVTpeIDrDUZWsKK6e4DwQEyAzIlM3VU,3395
|
444
443
|
moovio_sdk/models/operations/createschedule.py,sha256=vxJYRV6gAF6OuOCwZ8soVGHPNOaFNid_uofiphsYWsU,2751
|
445
444
|
moovio_sdk/models/operations/createsweepconfig.py,sha256=mC-dbVIizvTJjYTygLrFOO-C9Uv8nMDlGrDfVboN6e8,2765
|
446
445
|
moovio_sdk/models/operations/createterminalapplication.py,sha256=n7mnj-ixVXSV8El7dVhwueNm4Pd8xTiTefI1oayrIGE,2188
|
447
|
-
moovio_sdk/models/operations/createtransfer.py,sha256=
|
446
|
+
moovio_sdk/models/operations/createtransfer.py,sha256=VgLLC8Q3t183UdUz7_tLzk0pJBypEiZEa5mLQfJcOtY,4648
|
448
447
|
moovio_sdk/models/operations/createtransferoptions.py,sha256=DCrQtu3VPSdEOSt8gFnZHcCtRIN-c6NHBohifMolCzg,2139
|
449
448
|
moovio_sdk/models/operations/deletedisputeevidencefile.py,sha256=NHUuvakVuXiCwqI_gDDgjhFAAfKypztOzasr0S78KQE,2648
|
450
449
|
moovio_sdk/models/operations/deleterepresentative.py,sha256=H3bKQTMMsB9_wCqxfZqwgq-NljV5W-lGWzXIHEnxxv0,2582
|
@@ -522,7 +521,7 @@ moovio_sdk/models/operations/listpartnerpricing.py,sha256=854cjjpp-xrbljhv2TeJMN
|
|
522
521
|
moovio_sdk/models/operations/listpartnerpricingagreements.py,sha256=S8mCWGkgwoilm1lSeK3aYO5InBANJn3DCo61tpmO1EM,3816
|
523
522
|
moovio_sdk/models/operations/listpaymentlinks.py,sha256=d-OFDC26Vki-fx_7O0IEVPow4UJug_WuRw9fFxm_Yks,2410
|
524
523
|
moovio_sdk/models/operations/listpaymentmethods.py,sha256=fiEvZLA4uVk7r98a6naeTZHqHR1Cc6Put56T8ASv944,3890
|
525
|
-
moovio_sdk/models/operations/listreceipts.py,sha256=
|
524
|
+
moovio_sdk/models/operations/listreceipts.py,sha256=Hp2fOurscJCv1ejHwtUYJ1zGS4RQfoDx_ux6itbl94U,2511
|
526
525
|
moovio_sdk/models/operations/listrefunds.py,sha256=sVXcY-yN_NYHfeTeI9cwZR9GC3H2aUkGc9YPxcvjlIE,2708
|
527
526
|
moovio_sdk/models/operations/listrepresentatives.py,sha256=_8WjNSUx2wmZnR5Ggp5RHgPPLg9AEwHFKIOs7McR4BQ,2506
|
528
527
|
moovio_sdk/models/operations/listschedules.py,sha256=EUMVtQGVBLGU8xx56WnfmzVRNzN9GSoxZVwm5bD_IzQ,3077
|
@@ -562,7 +561,7 @@ moovio_sdk/payment_links.py,sha256=ejar3-EKcOgwHY1vw6350iXPLYZTHuIYzg5amjgNBQo,7
|
|
562
561
|
moovio_sdk/payment_methods.py,sha256=MvS5QvEgfYvqZ_gR1_mWh8E7sLvmyMfQ4pKBVzZeduU,20995
|
563
562
|
moovio_sdk/ping.py,sha256=fYM0yYDBEoo6Do55oNh_mLqelBxKpofv7tOrzVJioOc,9539
|
564
563
|
moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
565
|
-
moovio_sdk/receipts.py,sha256=
|
564
|
+
moovio_sdk/receipts.py,sha256=9lLgl2K87xsdMJSOqUIkdWyTgMSN0edTjLcmz3ghvVU,20688
|
566
565
|
moovio_sdk/representatives.py,sha256=nmDgxhxxfHtE8Li-F0zk9kUuq33cR9fEibue2zJ6nO0,64454
|
567
566
|
moovio_sdk/scheduling.py,sha256=-i2mkiwWLjz3ZjWEPvO6U6nZwd7V0gxr48r-955li8k,65653
|
568
567
|
moovio_sdk/sdk.py,sha256=69MUO1ypFQk6kVpbLGTQhc6r9gsqvctZZZr5LDqD4dk,10253
|
@@ -570,7 +569,7 @@ moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-
|
|
570
569
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
571
570
|
moovio_sdk/terminal_applications.py,sha256=MJVg8ikMsL8Pb90-7Tgmv-qKivpuom7nH_N2wy8L9H0,42822
|
572
571
|
moovio_sdk/terminal_configurations.py,sha256=6gqd2Syq1cHSFarTLRFwpzPfm06mK90T53wI594BhGw,10205
|
573
|
-
moovio_sdk/transfers.py,sha256=
|
572
|
+
moovio_sdk/transfers.py,sha256=rN9Qcma4vvMLNO4FhBlIvcZoB5mlpO6KmYEDpkORO9c,132982
|
574
573
|
moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
575
574
|
moovio_sdk/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
|
576
575
|
moovio_sdk/underwriting.py,sha256=Q3bOkxgz3syy6YgdTKK_DTAqK6lV_uawgVZZX3iPuqc,24353
|
@@ -591,6 +590,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
591
590
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
592
591
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
593
592
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
594
|
-
moovio_sdk-0.3.
|
595
|
-
moovio_sdk-0.3.
|
596
|
-
moovio_sdk-0.3.
|
593
|
+
moovio_sdk-0.3.23.dist-info/METADATA,sha256=edNW_RsU_InUqDolMG9Udrs3W-R_kJ6BHvj9uDpg0Eo,104253
|
594
|
+
moovio_sdk-0.3.23.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
595
|
+
moovio_sdk-0.3.23.dist-info/RECORD,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
from .asynctransfer import AsyncTransfer, AsyncTransferTypedDict
|
5
|
-
from .transfer import Transfer, TransferTypedDict
|
6
|
-
from typing import Union
|
7
|
-
from typing_extensions import TypeAliasType
|
8
|
-
|
9
|
-
|
10
|
-
TransferResponseTypedDict = TypeAliasType(
|
11
|
-
"TransferResponseTypedDict", Union[AsyncTransferTypedDict, TransferTypedDict]
|
12
|
-
)
|
13
|
-
|
14
|
-
|
15
|
-
TransferResponse = TypeAliasType("TransferResponse", Union[AsyncTransfer, Transfer])
|
@@ -1,40 +0,0 @@
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
from moovio_sdk import utils
|
5
|
-
from moovio_sdk.types import BaseModel
|
6
|
-
import pydantic
|
7
|
-
from typing import Optional
|
8
|
-
from typing_extensions import Annotated
|
9
|
-
|
10
|
-
|
11
|
-
class ReceiptValidationErrorData(BaseModel):
|
12
|
-
kind: Optional[str] = None
|
13
|
-
|
14
|
-
email: Optional[str] = None
|
15
|
-
|
16
|
-
email_account_id: Annotated[
|
17
|
-
Optional[str], pydantic.Field(alias="emailAccountID")
|
18
|
-
] = None
|
19
|
-
|
20
|
-
for_transfer_id: Annotated[Optional[str], pydantic.Field(alias="forTransferID")] = (
|
21
|
-
None
|
22
|
-
)
|
23
|
-
|
24
|
-
for_schedule_id: Annotated[Optional[str], pydantic.Field(alias="forScheduleID")] = (
|
25
|
-
None
|
26
|
-
)
|
27
|
-
|
28
|
-
for_occurrence_id: Annotated[
|
29
|
-
Optional[str], pydantic.Field(alias="forOccurrenceID")
|
30
|
-
] = None
|
31
|
-
|
32
|
-
|
33
|
-
class ReceiptValidationError(Exception):
|
34
|
-
data: ReceiptValidationErrorData
|
35
|
-
|
36
|
-
def __init__(self, data: ReceiptValidationErrorData):
|
37
|
-
self.data = data
|
38
|
-
|
39
|
-
def __str__(self) -> str:
|
40
|
-
return utils.marshal_json(self.data, ReceiptValidationErrorData)
|
File without changes
|