moovio_sdk 0.18.5__py3-none-any.whl → 0.19.0__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.
Potentially problematic release.
This version of moovio_sdk might be problematic. Click here for more details.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/fee_plans.py +636 -0
- moovio_sdk/models/components/__init__.py +5 -0
- moovio_sdk/models/components/imagemetadata.py +5 -0
- moovio_sdk/models/components/incurredfee.py +3 -0
- moovio_sdk/models/components/residual.py +57 -0
- moovio_sdk/models/operations/__init__.py +60 -0
- moovio_sdk/models/operations/getresidual.py +71 -0
- moovio_sdk/models/operations/listresidualfees.py +106 -0
- moovio_sdk/models/operations/listresiduals.py +99 -0
- {moovio_sdk-0.18.5.dist-info → moovio_sdk-0.19.0.dist-info}/METADATA +59 -47
- {moovio_sdk-0.18.5.dist-info → moovio_sdk-0.19.0.dist-info}/RECORD +13 -9
- {moovio_sdk-0.18.5.dist-info → moovio_sdk-0.19.0.dist-info}/WHEEL +0 -0
|
@@ -12,6 +12,8 @@ class ImageMetadataTypedDict(TypedDict):
|
|
|
12
12
|
r"""Metadata about an uploaded image."""
|
|
13
13
|
|
|
14
14
|
image_id: str
|
|
15
|
+
public_id: str
|
|
16
|
+
r"""The ID used to get an image with the public endpoint."""
|
|
15
17
|
link: str
|
|
16
18
|
r"""A public URL to access the image. An optional `size={width}x{height}`
|
|
17
19
|
query parameter can be provided to resize the image.
|
|
@@ -27,6 +29,9 @@ class ImageMetadata(BaseModel):
|
|
|
27
29
|
|
|
28
30
|
image_id: Annotated[str, pydantic.Field(alias="imageID")]
|
|
29
31
|
|
|
32
|
+
public_id: Annotated[str, pydantic.Field(alias="publicID")]
|
|
33
|
+
r"""The ID used to get an image with the public endpoint."""
|
|
34
|
+
|
|
30
35
|
link: str
|
|
31
36
|
r"""A public URL to access the image. An optional `size={width}x{height}`
|
|
32
37
|
query parameter can be provided to resize the image.
|
|
@@ -21,6 +21,7 @@ class IncurredFeeTypedDict(TypedDict):
|
|
|
21
21
|
amount: NotRequired[AmountDecimalTypedDict]
|
|
22
22
|
generated_by: NotRequired[GeneratedByTypedDict]
|
|
23
23
|
r"""The entity that generated the fee."""
|
|
24
|
+
fee_group: NotRequired[str]
|
|
24
25
|
|
|
25
26
|
|
|
26
27
|
class IncurredFee(BaseModel):
|
|
@@ -42,3 +43,5 @@ class IncurredFee(BaseModel):
|
|
|
42
43
|
Optional[GeneratedBy], pydantic.Field(alias="generatedBy")
|
|
43
44
|
] = None
|
|
44
45
|
r"""The entity that generated the fee."""
|
|
46
|
+
|
|
47
|
+
fee_group: Annotated[Optional[str], pydantic.Field(alias="feeGroup")] = None
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .amountdecimal import AmountDecimal, AmountDecimalTypedDict
|
|
5
|
+
from datetime import datetime
|
|
6
|
+
from moovio_sdk.types import BaseModel
|
|
7
|
+
import pydantic
|
|
8
|
+
from typing_extensions import Annotated, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ResidualTypedDict(TypedDict):
|
|
12
|
+
residual_id: str
|
|
13
|
+
partner_account_id: str
|
|
14
|
+
period_start: datetime
|
|
15
|
+
period_end: datetime
|
|
16
|
+
merchant_fees: AmountDecimalTypedDict
|
|
17
|
+
partner_cost: AmountDecimalTypedDict
|
|
18
|
+
net_income: AmountDecimalTypedDict
|
|
19
|
+
revenue_share: str
|
|
20
|
+
r"""The decimal-formatted numerical string of the revenue split for partner.
|
|
21
|
+
|
|
22
|
+
For example, 2.25% is '2.25'.
|
|
23
|
+
"""
|
|
24
|
+
residual_amount: AmountDecimalTypedDict
|
|
25
|
+
moov_share: AmountDecimalTypedDict
|
|
26
|
+
created_on: datetime
|
|
27
|
+
updated_on: datetime
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class Residual(BaseModel):
|
|
31
|
+
residual_id: Annotated[str, pydantic.Field(alias="residualID")]
|
|
32
|
+
|
|
33
|
+
partner_account_id: Annotated[str, pydantic.Field(alias="partnerAccountID")]
|
|
34
|
+
|
|
35
|
+
period_start: Annotated[datetime, pydantic.Field(alias="periodStart")]
|
|
36
|
+
|
|
37
|
+
period_end: Annotated[datetime, pydantic.Field(alias="periodEnd")]
|
|
38
|
+
|
|
39
|
+
merchant_fees: Annotated[AmountDecimal, pydantic.Field(alias="merchantFees")]
|
|
40
|
+
|
|
41
|
+
partner_cost: Annotated[AmountDecimal, pydantic.Field(alias="partnerCost")]
|
|
42
|
+
|
|
43
|
+
net_income: Annotated[AmountDecimal, pydantic.Field(alias="netIncome")]
|
|
44
|
+
|
|
45
|
+
revenue_share: Annotated[str, pydantic.Field(alias="revenueShare")]
|
|
46
|
+
r"""The decimal-formatted numerical string of the revenue split for partner.
|
|
47
|
+
|
|
48
|
+
For example, 2.25% is '2.25'.
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
residual_amount: Annotated[AmountDecimal, pydantic.Field(alias="residualAmount")]
|
|
52
|
+
|
|
53
|
+
moov_share: Annotated[AmountDecimal, pydantic.Field(alias="moovShare")]
|
|
54
|
+
|
|
55
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
|
56
|
+
|
|
57
|
+
updated_on: Annotated[datetime, pydantic.Field(alias="updatedOn")]
|
|
@@ -546,6 +546,14 @@ if TYPE_CHECKING:
|
|
|
546
546
|
GetRepresentativeResponse,
|
|
547
547
|
GetRepresentativeResponseTypedDict,
|
|
548
548
|
)
|
|
549
|
+
from .getresidual import (
|
|
550
|
+
GetResidualGlobals,
|
|
551
|
+
GetResidualGlobalsTypedDict,
|
|
552
|
+
GetResidualRequest,
|
|
553
|
+
GetResidualRequestTypedDict,
|
|
554
|
+
GetResidualResponse,
|
|
555
|
+
GetResidualResponseTypedDict,
|
|
556
|
+
)
|
|
549
557
|
from .getscheduledoccurrence import (
|
|
550
558
|
GetScheduledOccurrenceGlobals,
|
|
551
559
|
GetScheduledOccurrenceGlobalsTypedDict,
|
|
@@ -934,6 +942,22 @@ if TYPE_CHECKING:
|
|
|
934
942
|
ListRepresentativesResponse,
|
|
935
943
|
ListRepresentativesResponseTypedDict,
|
|
936
944
|
)
|
|
945
|
+
from .listresidualfees import (
|
|
946
|
+
ListResidualFeesGlobals,
|
|
947
|
+
ListResidualFeesGlobalsTypedDict,
|
|
948
|
+
ListResidualFeesRequest,
|
|
949
|
+
ListResidualFeesRequestTypedDict,
|
|
950
|
+
ListResidualFeesResponse,
|
|
951
|
+
ListResidualFeesResponseTypedDict,
|
|
952
|
+
)
|
|
953
|
+
from .listresiduals import (
|
|
954
|
+
ListResidualsGlobals,
|
|
955
|
+
ListResidualsGlobalsTypedDict,
|
|
956
|
+
ListResidualsRequest,
|
|
957
|
+
ListResidualsRequestTypedDict,
|
|
958
|
+
ListResidualsResponse,
|
|
959
|
+
ListResidualsResponseTypedDict,
|
|
960
|
+
)
|
|
937
961
|
from .listschedules import (
|
|
938
962
|
Hydrate,
|
|
939
963
|
ListSchedulesGlobals,
|
|
@@ -1683,6 +1707,12 @@ __all__ = [
|
|
|
1683
1707
|
"GetRepresentativeRequestTypedDict",
|
|
1684
1708
|
"GetRepresentativeResponse",
|
|
1685
1709
|
"GetRepresentativeResponseTypedDict",
|
|
1710
|
+
"GetResidualGlobals",
|
|
1711
|
+
"GetResidualGlobalsTypedDict",
|
|
1712
|
+
"GetResidualRequest",
|
|
1713
|
+
"GetResidualRequestTypedDict",
|
|
1714
|
+
"GetResidualResponse",
|
|
1715
|
+
"GetResidualResponseTypedDict",
|
|
1686
1716
|
"GetScheduledOccurrenceGlobals",
|
|
1687
1717
|
"GetScheduledOccurrenceGlobalsTypedDict",
|
|
1688
1718
|
"GetScheduledOccurrenceRequest",
|
|
@@ -1976,6 +2006,18 @@ __all__ = [
|
|
|
1976
2006
|
"ListRepresentativesRequestTypedDict",
|
|
1977
2007
|
"ListRepresentativesResponse",
|
|
1978
2008
|
"ListRepresentativesResponseTypedDict",
|
|
2009
|
+
"ListResidualFeesGlobals",
|
|
2010
|
+
"ListResidualFeesGlobalsTypedDict",
|
|
2011
|
+
"ListResidualFeesRequest",
|
|
2012
|
+
"ListResidualFeesRequestTypedDict",
|
|
2013
|
+
"ListResidualFeesResponse",
|
|
2014
|
+
"ListResidualFeesResponseTypedDict",
|
|
2015
|
+
"ListResidualsGlobals",
|
|
2016
|
+
"ListResidualsGlobalsTypedDict",
|
|
2017
|
+
"ListResidualsRequest",
|
|
2018
|
+
"ListResidualsRequestTypedDict",
|
|
2019
|
+
"ListResidualsResponse",
|
|
2020
|
+
"ListResidualsResponseTypedDict",
|
|
1979
2021
|
"ListSchedulesGlobals",
|
|
1980
2022
|
"ListSchedulesGlobalsTypedDict",
|
|
1981
2023
|
"ListSchedulesRequest",
|
|
@@ -2639,6 +2681,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2639
2681
|
"GetRepresentativeRequestTypedDict": ".getrepresentative",
|
|
2640
2682
|
"GetRepresentativeResponse": ".getrepresentative",
|
|
2641
2683
|
"GetRepresentativeResponseTypedDict": ".getrepresentative",
|
|
2684
|
+
"GetResidualGlobals": ".getresidual",
|
|
2685
|
+
"GetResidualGlobalsTypedDict": ".getresidual",
|
|
2686
|
+
"GetResidualRequest": ".getresidual",
|
|
2687
|
+
"GetResidualRequestTypedDict": ".getresidual",
|
|
2688
|
+
"GetResidualResponse": ".getresidual",
|
|
2689
|
+
"GetResidualResponseTypedDict": ".getresidual",
|
|
2642
2690
|
"GetScheduledOccurrenceGlobals": ".getscheduledoccurrence",
|
|
2643
2691
|
"GetScheduledOccurrenceGlobalsTypedDict": ".getscheduledoccurrence",
|
|
2644
2692
|
"GetScheduledOccurrenceRequest": ".getscheduledoccurrence",
|
|
@@ -2931,6 +2979,18 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2931
2979
|
"ListRepresentativesRequestTypedDict": ".listrepresentatives",
|
|
2932
2980
|
"ListRepresentativesResponse": ".listrepresentatives",
|
|
2933
2981
|
"ListRepresentativesResponseTypedDict": ".listrepresentatives",
|
|
2982
|
+
"ListResidualFeesGlobals": ".listresidualfees",
|
|
2983
|
+
"ListResidualFeesGlobalsTypedDict": ".listresidualfees",
|
|
2984
|
+
"ListResidualFeesRequest": ".listresidualfees",
|
|
2985
|
+
"ListResidualFeesRequestTypedDict": ".listresidualfees",
|
|
2986
|
+
"ListResidualFeesResponse": ".listresidualfees",
|
|
2987
|
+
"ListResidualFeesResponseTypedDict": ".listresidualfees",
|
|
2988
|
+
"ListResidualsGlobals": ".listresiduals",
|
|
2989
|
+
"ListResidualsGlobalsTypedDict": ".listresiduals",
|
|
2990
|
+
"ListResidualsRequest": ".listresiduals",
|
|
2991
|
+
"ListResidualsRequestTypedDict": ".listresiduals",
|
|
2992
|
+
"ListResidualsResponse": ".listresiduals",
|
|
2993
|
+
"ListResidualsResponseTypedDict": ".listresiduals",
|
|
2934
2994
|
"Hydrate": ".listschedules",
|
|
2935
2995
|
"ListSchedulesGlobals": ".listschedules",
|
|
2936
2996
|
"ListSchedulesGlobalsTypedDict": ".listschedules",
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from moovio_sdk.models.components import residual as components_residual
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
|
7
|
+
import pydantic
|
|
8
|
+
from typing import Dict, List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class GetResidualGlobalsTypedDict(TypedDict):
|
|
13
|
+
x_moov_version: NotRequired[str]
|
|
14
|
+
r"""Specify an API version.
|
|
15
|
+
|
|
16
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
17
|
+
- `YYYY` is the year
|
|
18
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
19
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
20
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
21
|
+
|
|
22
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class GetResidualGlobals(BaseModel):
|
|
27
|
+
x_moov_version: Annotated[
|
|
28
|
+
Optional[str],
|
|
29
|
+
pydantic.Field(alias="X-Moov-Version"),
|
|
30
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
31
|
+
] = "v2024.01.00"
|
|
32
|
+
r"""Specify an API version.
|
|
33
|
+
|
|
34
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
35
|
+
- `YYYY` is the year
|
|
36
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
37
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
38
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
39
|
+
|
|
40
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class GetResidualRequestTypedDict(TypedDict):
|
|
45
|
+
account_id: str
|
|
46
|
+
residual_id: str
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class GetResidualRequest(BaseModel):
|
|
50
|
+
account_id: Annotated[
|
|
51
|
+
str,
|
|
52
|
+
pydantic.Field(alias="accountID"),
|
|
53
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
residual_id: Annotated[
|
|
57
|
+
str,
|
|
58
|
+
pydantic.Field(alias="residualID"),
|
|
59
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class GetResidualResponseTypedDict(TypedDict):
|
|
64
|
+
headers: Dict[str, List[str]]
|
|
65
|
+
result: components_residual.ResidualTypedDict
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class GetResidualResponse(BaseModel):
|
|
69
|
+
headers: Dict[str, List[str]]
|
|
70
|
+
|
|
71
|
+
result: components_residual.Residual
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from moovio_sdk.models.components import incurredfee as components_incurredfee
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import (
|
|
7
|
+
FieldMetadata,
|
|
8
|
+
HeaderMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
QueryParamMetadata,
|
|
11
|
+
)
|
|
12
|
+
import pydantic
|
|
13
|
+
from typing import Dict, List, Optional
|
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ListResidualFeesGlobalsTypedDict(TypedDict):
|
|
18
|
+
x_moov_version: NotRequired[str]
|
|
19
|
+
r"""Specify an API version.
|
|
20
|
+
|
|
21
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
22
|
+
- `YYYY` is the year
|
|
23
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
24
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
25
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
26
|
+
|
|
27
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class ListResidualFeesGlobals(BaseModel):
|
|
32
|
+
x_moov_version: Annotated[
|
|
33
|
+
Optional[str],
|
|
34
|
+
pydantic.Field(alias="X-Moov-Version"),
|
|
35
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
36
|
+
] = "v2024.01.00"
|
|
37
|
+
r"""Specify an API version.
|
|
38
|
+
|
|
39
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
40
|
+
- `YYYY` is the year
|
|
41
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
42
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
43
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
44
|
+
|
|
45
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ListResidualFeesRequestTypedDict(TypedDict):
|
|
50
|
+
account_id: str
|
|
51
|
+
residual_id: str
|
|
52
|
+
skip: NotRequired[int]
|
|
53
|
+
count: NotRequired[int]
|
|
54
|
+
start_date_time: NotRequired[str]
|
|
55
|
+
r"""Optional date-time to inclusively filter all fees created after this date-time."""
|
|
56
|
+
end_date_time: NotRequired[str]
|
|
57
|
+
r"""Optional date-time to exclusively filter all fees created before this date-time."""
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
class ListResidualFeesRequest(BaseModel):
|
|
61
|
+
account_id: Annotated[
|
|
62
|
+
str,
|
|
63
|
+
pydantic.Field(alias="accountID"),
|
|
64
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
residual_id: Annotated[
|
|
68
|
+
str,
|
|
69
|
+
pydantic.Field(alias="residualID"),
|
|
70
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
skip: Annotated[
|
|
74
|
+
Optional[int],
|
|
75
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
76
|
+
] = None
|
|
77
|
+
|
|
78
|
+
count: Annotated[
|
|
79
|
+
Optional[int],
|
|
80
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
81
|
+
] = None
|
|
82
|
+
|
|
83
|
+
start_date_time: Annotated[
|
|
84
|
+
Optional[str],
|
|
85
|
+
pydantic.Field(alias="startDateTime"),
|
|
86
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
87
|
+
] = None
|
|
88
|
+
r"""Optional date-time to inclusively filter all fees created after this date-time."""
|
|
89
|
+
|
|
90
|
+
end_date_time: Annotated[
|
|
91
|
+
Optional[str],
|
|
92
|
+
pydantic.Field(alias="endDateTime"),
|
|
93
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
94
|
+
] = None
|
|
95
|
+
r"""Optional date-time to exclusively filter all fees created before this date-time."""
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class ListResidualFeesResponseTypedDict(TypedDict):
|
|
99
|
+
headers: Dict[str, List[str]]
|
|
100
|
+
result: List[components_incurredfee.IncurredFeeTypedDict]
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class ListResidualFeesResponse(BaseModel):
|
|
104
|
+
headers: Dict[str, List[str]]
|
|
105
|
+
|
|
106
|
+
result: List[components_incurredfee.IncurredFee]
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from moovio_sdk.models.components import residual as components_residual
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import (
|
|
7
|
+
FieldMetadata,
|
|
8
|
+
HeaderMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
QueryParamMetadata,
|
|
11
|
+
)
|
|
12
|
+
import pydantic
|
|
13
|
+
from typing import Dict, List, Optional
|
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ListResidualsGlobalsTypedDict(TypedDict):
|
|
18
|
+
x_moov_version: NotRequired[str]
|
|
19
|
+
r"""Specify an API version.
|
|
20
|
+
|
|
21
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
22
|
+
- `YYYY` is the year
|
|
23
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
24
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
25
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
26
|
+
|
|
27
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class ListResidualsGlobals(BaseModel):
|
|
32
|
+
x_moov_version: Annotated[
|
|
33
|
+
Optional[str],
|
|
34
|
+
pydantic.Field(alias="X-Moov-Version"),
|
|
35
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
36
|
+
] = "v2024.01.00"
|
|
37
|
+
r"""Specify an API version.
|
|
38
|
+
|
|
39
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
40
|
+
- `YYYY` is the year
|
|
41
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
42
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
43
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
44
|
+
|
|
45
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ListResidualsRequestTypedDict(TypedDict):
|
|
50
|
+
account_id: str
|
|
51
|
+
skip: NotRequired[int]
|
|
52
|
+
count: NotRequired[int]
|
|
53
|
+
start_date_time: NotRequired[str]
|
|
54
|
+
r"""Optional date-time to inclusively filter all residuals with a period start after this date-time."""
|
|
55
|
+
end_date_time: NotRequired[str]
|
|
56
|
+
r"""Optional date-time to exclusively filter all residuals with a period end before this date-time."""
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class ListResidualsRequest(BaseModel):
|
|
60
|
+
account_id: Annotated[
|
|
61
|
+
str,
|
|
62
|
+
pydantic.Field(alias="accountID"),
|
|
63
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
skip: Annotated[
|
|
67
|
+
Optional[int],
|
|
68
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
69
|
+
] = None
|
|
70
|
+
|
|
71
|
+
count: Annotated[
|
|
72
|
+
Optional[int],
|
|
73
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
74
|
+
] = None
|
|
75
|
+
|
|
76
|
+
start_date_time: Annotated[
|
|
77
|
+
Optional[str],
|
|
78
|
+
pydantic.Field(alias="startDateTime"),
|
|
79
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
80
|
+
] = None
|
|
81
|
+
r"""Optional date-time to inclusively filter all residuals with a period start after this date-time."""
|
|
82
|
+
|
|
83
|
+
end_date_time: Annotated[
|
|
84
|
+
Optional[str],
|
|
85
|
+
pydantic.Field(alias="endDateTime"),
|
|
86
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
87
|
+
] = None
|
|
88
|
+
r"""Optional date-time to exclusively filter all residuals with a period end before this date-time."""
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class ListResidualsResponseTypedDict(TypedDict):
|
|
92
|
+
headers: Dict[str, List[str]]
|
|
93
|
+
result: List[components_residual.ResidualTypedDict]
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
class ListResidualsResponse(BaseModel):
|
|
97
|
+
headers: Dict[str, List[str]]
|
|
98
|
+
|
|
99
|
+
result: List[components_residual.Residual]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moovio_sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -804,6 +804,18 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
|
|
|
804
804
|
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
805
805
|
* [list_partner_pricing_agreements](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_partner_pricing_agreements) - List all partner pricing agreements associated with an account.
|
|
806
806
|
|
|
807
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
808
|
+
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
809
|
+
* [list_residuals](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_residuals) - List all residuals associated with an account.
|
|
810
|
+
|
|
811
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
812
|
+
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
813
|
+
* [get_residual](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#get_residual) - Get a residual associated with an account.
|
|
814
|
+
|
|
815
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
816
|
+
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
817
|
+
* [list_residual_fees](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_residual_fees) - List all fees associated with a residual.
|
|
818
|
+
|
|
807
819
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
808
820
|
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
809
821
|
|
|
@@ -1526,52 +1538,52 @@ with Moov(
|
|
|
1526
1538
|
|
|
1527
1539
|
|
|
1528
1540
|
**Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
|
|
1529
|
-
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 72 of
|
|
1530
|
-
* [`BrandValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/brandvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of
|
|
1531
|
-
* [`ImageRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/imagerequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
1532
|
-
* [`ProductRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/productrequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
1533
|
-
* [`ScheduleValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/schedulevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
1534
|
-
* [`TerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/terminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
1535
|
-
* [`Transfer`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfer.py): Details of a Transfer. Status code `409`. Applicable to 1 of
|
|
1536
|
-
* [`CardAcquiringRefund`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/cardacquiringrefund.py): Details of a card refund. Status code `409`. Applicable to 1 of
|
|
1537
|
-
* [`CreateAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1538
|
-
* [`PatchAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1539
|
-
* [`AssignCountriesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/assigncountrieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1540
|
-
* [`LinkApplePayError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkapplepayerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1541
|
-
* [`BankAccountValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/bankaccountvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1542
|
-
* [`MicroDepositValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/microdepositvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1543
|
-
* [`AddCapabilitiesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/addcapabilitieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1544
|
-
* [`LinkCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1545
|
-
* [`UpdateCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatecarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1546
|
-
* [`FileUploadValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/fileuploadvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1547
|
-
* [`FeePlanAgreementError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/feeplanagreementerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1548
|
-
* [`FileValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/filevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1549
|
-
* [`ImageMetadataValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/imagemetadatavalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1550
|
-
* [`CreatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createpaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1551
|
-
* [`UpdatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatepaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1552
|
-
* [`RepresentativeValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/representativevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1553
|
-
* [`CreateSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1554
|
-
* [`PatchSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1555
|
-
* [`AccountTerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/accountterminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1556
|
-
* [`CreateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1557
|
-
* [`UpdateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1558
|
-
* [`TransferOptionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transferoptionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1559
|
-
* [`TransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1560
|
-
* [`ListTransfersValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listtransfersvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1561
|
-
* [`PatchTransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchtransfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1562
|
-
* [`RefundValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/refundvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1563
|
-
* [`ReversalValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/reversalvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1564
|
-
* [`UpsertUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/upsertunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1565
|
-
* [`UpdateUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1566
|
-
* [`CreateWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1567
|
-
* [`ListWalletsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwalletsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1568
|
-
* [`PatchWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1569
|
-
* [`ListWalletTransactionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwallettransactionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1570
|
-
* [`RequestCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/requestcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1571
|
-
* [`UpdateIssuedCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateissuedcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1572
|
-
* [`RevokeTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/revoketokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1573
|
-
* [`AuthTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/authtokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1574
|
-
* [`OnboardingInviteError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/onboardinginviteerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
1541
|
+
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 72 of 162 methods.*
|
|
1542
|
+
* [`BrandValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/brandvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of 162 methods.*
|
|
1543
|
+
* [`ImageRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/imagerequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
|
|
1544
|
+
* [`ProductRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/productrequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
|
|
1545
|
+
* [`ScheduleValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/schedulevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
|
|
1546
|
+
* [`TerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/terminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
|
|
1547
|
+
* [`Transfer`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfer.py): Details of a Transfer. Status code `409`. Applicable to 1 of 162 methods.*
|
|
1548
|
+
* [`CardAcquiringRefund`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/cardacquiringrefund.py): Details of a card refund. Status code `409`. Applicable to 1 of 162 methods.*
|
|
1549
|
+
* [`CreateAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1550
|
+
* [`PatchAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1551
|
+
* [`AssignCountriesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/assigncountrieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1552
|
+
* [`LinkApplePayError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkapplepayerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1553
|
+
* [`BankAccountValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/bankaccountvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1554
|
+
* [`MicroDepositValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/microdepositvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1555
|
+
* [`AddCapabilitiesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/addcapabilitieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1556
|
+
* [`LinkCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1557
|
+
* [`UpdateCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatecarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1558
|
+
* [`FileUploadValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/fileuploadvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1559
|
+
* [`FeePlanAgreementError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/feeplanagreementerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1560
|
+
* [`FileValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/filevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1561
|
+
* [`ImageMetadataValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/imagemetadatavalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1562
|
+
* [`CreatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createpaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1563
|
+
* [`UpdatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatepaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1564
|
+
* [`RepresentativeValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/representativevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1565
|
+
* [`CreateSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1566
|
+
* [`PatchSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1567
|
+
* [`AccountTerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/accountterminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1568
|
+
* [`CreateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1569
|
+
* [`UpdateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1570
|
+
* [`TransferOptionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transferoptionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1571
|
+
* [`TransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1572
|
+
* [`ListTransfersValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listtransfersvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1573
|
+
* [`PatchTransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchtransfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1574
|
+
* [`RefundValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/refundvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1575
|
+
* [`ReversalValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/reversalvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1576
|
+
* [`UpsertUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/upsertunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1577
|
+
* [`UpdateUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1578
|
+
* [`CreateWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1579
|
+
* [`ListWalletsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwalletsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1580
|
+
* [`PatchWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1581
|
+
* [`ListWalletTransactionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwallettransactionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1582
|
+
* [`RequestCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/requestcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1583
|
+
* [`UpdateIssuedCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateissuedcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1584
|
+
* [`RevokeTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/revoketokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1585
|
+
* [`AuthTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/authtokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1586
|
+
* [`OnboardingInviteError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/onboardinginviteerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 162 methods.*
|
|
1575
1587
|
* [`ResponseValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
1576
1588
|
|
|
1577
1589
|
</details>
|