moovio_sdk 0.13.3__py3-none-any.whl → 0.13.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
moovio_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.13.3"
6
+ __version__: str = "0.13.5"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.656.3"
9
- __user_agent__: str = "speakeasy-sdk/python 0.13.3 2.656.3 latest moovio_sdk"
8
+ __gen_version__: str = "2.656.5"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.13.5 2.656.5 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -528,6 +528,7 @@ if TYPE_CHECKING:
528
528
  IssuingVelocityLimitError,
529
529
  IssuingVelocityLimitErrorTypedDict,
530
530
  )
531
+ from .itemlistnextpage import ItemListNextPage, ItemListNextPageTypedDict
531
532
  from .jsonwebkey import JSONWebKey, JSONWebKeyTypedDict, Use
532
533
  from .linkaccountterminalapplication import (
533
534
  LinkAccountTerminalApplication,
@@ -1512,6 +1513,8 @@ __all__ = [
1512
1513
  "IssuingVelocityLimitError",
1513
1514
  "IssuingVelocityLimitErrorTypedDict",
1514
1515
  "IssuingVelocityLimitTypedDict",
1516
+ "ItemListNextPage",
1517
+ "ItemListNextPageTypedDict",
1515
1518
  "Itin",
1516
1519
  "ItinTypedDict",
1517
1520
  "JSONWebKey",
@@ -2411,6 +2414,8 @@ _dynamic_imports: dict[str, str] = {
2411
2414
  "IssuingVelocityLimitTypedDict": ".issuingvelocitylimit",
2412
2415
  "IssuingVelocityLimitError": ".issuingvelocitylimiterror",
2413
2416
  "IssuingVelocityLimitErrorTypedDict": ".issuingvelocitylimiterror",
2417
+ "ItemListNextPage": ".itemlistnextpage",
2418
+ "ItemListNextPageTypedDict": ".itemlistnextpage",
2414
2419
  "JSONWebKey": ".jsonwebkey",
2415
2420
  "JSONWebKeyTypedDict": ".jsonwebkey",
2416
2421
  "Use": ".jsonwebkey",
@@ -35,6 +35,8 @@ class CardTransactionDetailsTypedDict(TypedDict):
35
35
  r"""The program assigned by the card network that determines the interchange rate for the transfer."""
36
36
  fee_program: NotRequired[str]
37
37
  r"""The program assigned by the card network that determines the interchange rate for the transfer."""
38
+ authorization_code: NotRequired[str]
39
+ r"""An alphanumeric code generated by the card network to demonstrate approval for the transaction."""
38
40
 
39
41
 
40
42
  class CardTransactionDetails(BaseModel):
@@ -92,3 +94,8 @@ class CardTransactionDetails(BaseModel):
92
94
 
93
95
  fee_program: Annotated[Optional[str], pydantic.Field(alias="feeProgram")] = None
94
96
  r"""The program assigned by the card network that determines the interchange rate for the transfer."""
97
+
98
+ authorization_code: Annotated[
99
+ Optional[str], pydantic.Field(alias="authorizationCode")
100
+ ] = None
101
+ r"""An alphanumeric code generated by the card network to demonstrate approval for the transaction."""
@@ -0,0 +1,15 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from moovio_sdk.types import BaseModel
5
+ from typing_extensions import TypedDict
6
+
7
+
8
+ class ItemListNextPageTypedDict(TypedDict):
9
+ cursor: str
10
+ r"""The cursor value to use for the next page of items."""
11
+
12
+
13
+ class ItemListNextPage(BaseModel):
14
+ cursor: str
15
+ r"""The cursor value to use for the next page of items."""
@@ -36,6 +36,10 @@ class TerminalCardTypedDict(TypedDict):
36
36
  r"""Country where the card was issued."""
37
37
  last_four_card_number: NotRequired[str]
38
38
  r"""Last four digits of the card number"""
39
+ application_id: NotRequired[str]
40
+ r"""Identifier for the point of sale terminal application."""
41
+ application_name: NotRequired[str]
42
+ r"""Name label for the point of sale terminal application."""
39
43
 
40
44
 
41
45
  class TerminalCard(BaseModel):
@@ -76,3 +80,13 @@ class TerminalCard(BaseModel):
76
80
  Optional[str], pydantic.Field(alias="lastFourCardNumber")
77
81
  ] = None
78
82
  r"""Last four digits of the card number"""
83
+
84
+ application_id: Annotated[Optional[str], pydantic.Field(alias="applicationID")] = (
85
+ None
86
+ )
87
+ r"""Identifier for the point of sale terminal application."""
88
+
89
+ application_name: Annotated[
90
+ Optional[str], pydantic.Field(alias="applicationName")
91
+ ] = None
92
+ r"""Name label for the point of sale terminal application."""
@@ -167,17 +167,11 @@ if TYPE_CHECKING:
167
167
  from .createtransferoptions import (
168
168
  CreateTransferOptionsGlobals,
169
169
  CreateTransferOptionsGlobalsTypedDict,
170
+ CreateTransferOptionsRequest,
171
+ CreateTransferOptionsRequestTypedDict,
170
172
  CreateTransferOptionsResponse,
171
173
  CreateTransferOptionsResponseTypedDict,
172
174
  )
173
- from .createtransferoptionsforaccount import (
174
- CreateTransferOptionsForAccountGlobals,
175
- CreateTransferOptionsForAccountGlobalsTypedDict,
176
- CreateTransferOptionsForAccountRequest,
177
- CreateTransferOptionsForAccountRequestTypedDict,
178
- CreateTransferOptionsForAccountResponse,
179
- CreateTransferOptionsForAccountResponseTypedDict,
180
- )
181
175
  from .deletedisputeevidencefile import (
182
176
  DeleteDisputeEvidenceFileGlobals,
183
177
  DeleteDisputeEvidenceFileGlobalsTypedDict,
@@ -895,6 +889,8 @@ if TYPE_CHECKING:
895
889
  ListTicketsRequest,
896
890
  ListTicketsRequestTypedDict,
897
891
  ListTicketsResponse,
892
+ ListTicketsResponseBody,
893
+ ListTicketsResponseBodyTypedDict,
898
894
  ListTicketsResponseTypedDict,
899
895
  )
900
896
  from .listtransfers import (
@@ -1255,14 +1251,10 @@ __all__ = [
1255
1251
  "CreateTicketResponseTypedDict",
1256
1252
  "CreateTransferGlobals",
1257
1253
  "CreateTransferGlobalsTypedDict",
1258
- "CreateTransferOptionsForAccountGlobals",
1259
- "CreateTransferOptionsForAccountGlobalsTypedDict",
1260
- "CreateTransferOptionsForAccountRequest",
1261
- "CreateTransferOptionsForAccountRequestTypedDict",
1262
- "CreateTransferOptionsForAccountResponse",
1263
- "CreateTransferOptionsForAccountResponseTypedDict",
1264
1254
  "CreateTransferOptionsGlobals",
1265
1255
  "CreateTransferOptionsGlobalsTypedDict",
1256
+ "CreateTransferOptionsRequest",
1257
+ "CreateTransferOptionsRequestTypedDict",
1266
1258
  "CreateTransferOptionsResponse",
1267
1259
  "CreateTransferOptionsResponseTypedDict",
1268
1260
  "CreateTransferRequest",
@@ -1811,6 +1803,8 @@ __all__ = [
1811
1803
  "ListTicketsRequest",
1812
1804
  "ListTicketsRequestTypedDict",
1813
1805
  "ListTicketsResponse",
1806
+ "ListTicketsResponseBody",
1807
+ "ListTicketsResponseBodyTypedDict",
1814
1808
  "ListTicketsResponseTypedDict",
1815
1809
  "ListTransfersGlobals",
1816
1810
  "ListTransfersGlobalsTypedDict",
@@ -2117,14 +2111,10 @@ _dynamic_imports: dict[str, str] = {
2117
2111
  "CreateTransferResponseTypedDict": ".createtransfer",
2118
2112
  "CreateTransferOptionsGlobals": ".createtransferoptions",
2119
2113
  "CreateTransferOptionsGlobalsTypedDict": ".createtransferoptions",
2114
+ "CreateTransferOptionsRequest": ".createtransferoptions",
2115
+ "CreateTransferOptionsRequestTypedDict": ".createtransferoptions",
2120
2116
  "CreateTransferOptionsResponse": ".createtransferoptions",
2121
2117
  "CreateTransferOptionsResponseTypedDict": ".createtransferoptions",
2122
- "CreateTransferOptionsForAccountGlobals": ".createtransferoptionsforaccount",
2123
- "CreateTransferOptionsForAccountGlobalsTypedDict": ".createtransferoptionsforaccount",
2124
- "CreateTransferOptionsForAccountRequest": ".createtransferoptionsforaccount",
2125
- "CreateTransferOptionsForAccountRequestTypedDict": ".createtransferoptionsforaccount",
2126
- "CreateTransferOptionsForAccountResponse": ".createtransferoptionsforaccount",
2127
- "CreateTransferOptionsForAccountResponseTypedDict": ".createtransferoptionsforaccount",
2128
2118
  "DeleteDisputeEvidenceFileGlobals": ".deletedisputeevidencefile",
2129
2119
  "DeleteDisputeEvidenceFileGlobalsTypedDict": ".deletedisputeevidencefile",
2130
2120
  "DeleteDisputeEvidenceFileRequest": ".deletedisputeevidencefile",
@@ -2665,6 +2655,8 @@ _dynamic_imports: dict[str, str] = {
2665
2655
  "ListTicketsRequest": ".listtickets",
2666
2656
  "ListTicketsRequestTypedDict": ".listtickets",
2667
2657
  "ListTicketsResponse": ".listtickets",
2658
+ "ListTicketsResponseBody": ".listtickets",
2659
+ "ListTicketsResponseBodyTypedDict": ".listtickets",
2668
2660
  "ListTicketsResponseTypedDict": ".listtickets",
2669
2661
  "ListTransfersGlobals": ".listtransfers",
2670
2662
  "ListTransfersGlobalsTypedDict": ".listtransfers",
@@ -1,9 +1,17 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from moovio_sdk.models.components import transferoptions as components_transferoptions
4
+ from moovio_sdk.models.components import (
5
+ createtransferoptions as components_createtransferoptions,
6
+ transferoptions as components_transferoptions,
7
+ )
5
8
  from moovio_sdk.types import BaseModel
6
- from moovio_sdk.utils import FieldMetadata, HeaderMetadata
9
+ from moovio_sdk.utils import (
10
+ FieldMetadata,
11
+ HeaderMetadata,
12
+ PathParamMetadata,
13
+ RequestMetadata,
14
+ )
7
15
  import pydantic
8
16
  from typing import Dict, List, Optional
9
17
  from typing_extensions import Annotated, NotRequired, TypedDict
@@ -41,6 +49,28 @@ class CreateTransferOptionsGlobals(BaseModel):
41
49
  """
42
50
 
43
51
 
52
+ class CreateTransferOptionsRequestTypedDict(TypedDict):
53
+ account_id: str
54
+ r"""The partner's Moov account ID."""
55
+ create_transfer_options: (
56
+ components_createtransferoptions.CreateTransferOptionsTypedDict
57
+ )
58
+
59
+
60
+ class CreateTransferOptionsRequest(BaseModel):
61
+ account_id: Annotated[
62
+ str,
63
+ pydantic.Field(alias="accountID"),
64
+ FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
65
+ ]
66
+ r"""The partner's Moov account ID."""
67
+
68
+ create_transfer_options: Annotated[
69
+ components_createtransferoptions.CreateTransferOptions,
70
+ FieldMetadata(request=RequestMetadata(media_type="application/json")),
71
+ ]
72
+
73
+
44
74
  class CreateTransferOptionsResponseTypedDict(TypedDict):
45
75
  headers: Dict[str, List[str]]
46
76
  result: components_transferoptions.TransferOptionsTypedDict
@@ -1,7 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from moovio_sdk.models.components import ticket as components_ticket
4
+ from moovio_sdk.models.components import (
5
+ itemlistnextpage as components_itemlistnextpage,
6
+ ticket as components_ticket,
7
+ ticketstatus as components_ticketstatus,
8
+ )
5
9
  from moovio_sdk.types import BaseModel
6
10
  from moovio_sdk.utils import (
7
11
  FieldMetadata,
@@ -50,6 +54,7 @@ class ListTicketsRequestTypedDict(TypedDict):
50
54
  account_id: str
51
55
  cursor: NotRequired[str]
52
56
  count: NotRequired[int]
57
+ status: NotRequired[components_ticketstatus.TicketStatus]
53
58
 
54
59
 
55
60
  class ListTicketsRequest(BaseModel):
@@ -69,13 +74,36 @@ class ListTicketsRequest(BaseModel):
69
74
  FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
70
75
  ] = None
71
76
 
77
+ status: Annotated[
78
+ Optional[components_ticketstatus.TicketStatus],
79
+ FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
80
+ ] = None
81
+
82
+
83
+ class ListTicketsResponseBodyTypedDict(TypedDict):
84
+ r"""A paginated list of items. The `nextPage` field is omitted if there are no more pages available."""
85
+
86
+ items: List[components_ticket.TicketTypedDict]
87
+ next_page: NotRequired[components_itemlistnextpage.ItemListNextPageTypedDict]
88
+
89
+
90
+ class ListTicketsResponseBody(BaseModel):
91
+ r"""A paginated list of items. The `nextPage` field is omitted if there are no more pages available."""
92
+
93
+ items: List[components_ticket.Ticket]
94
+
95
+ next_page: Annotated[
96
+ Optional[components_itemlistnextpage.ItemListNextPage],
97
+ pydantic.Field(alias="nextPage"),
98
+ ] = None
99
+
72
100
 
73
101
  class ListTicketsResponseTypedDict(TypedDict):
74
102
  headers: Dict[str, List[str]]
75
- result: List[components_ticket.TicketTypedDict]
103
+ result: ListTicketsResponseBodyTypedDict
76
104
 
77
105
 
78
106
  class ListTicketsResponse(BaseModel):
79
107
  headers: Dict[str, List[str]]
80
108
 
81
- result: List[components_ticket.Ticket]
109
+ result: ListTicketsResponseBody
moovio_sdk/support.py CHANGED
@@ -279,6 +279,7 @@ class Support(BaseSDK):
279
279
  account_id: str,
280
280
  cursor: Optional[str] = None,
281
281
  count: Optional[int] = None,
282
+ status: Optional[components.TicketStatus] = None,
282
283
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
283
284
  server_url: Optional[str] = None,
284
285
  timeout_ms: Optional[int] = None,
@@ -292,6 +293,7 @@ class Support(BaseSDK):
292
293
  :param account_id:
293
294
  :param cursor:
294
295
  :param count:
296
+ :param status:
295
297
  :param retries: Override the default retry configuration for this method
296
298
  :param server_url: Override the default server URL for this method
297
299
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -310,6 +312,7 @@ class Support(BaseSDK):
310
312
  request = operations.ListTicketsRequest(
311
313
  cursor=cursor,
312
314
  count=count,
315
+ status=status,
313
316
  account_id=account_id,
314
317
  )
315
318
 
@@ -357,7 +360,9 @@ class Support(BaseSDK):
357
360
 
358
361
  if utils.match_response(http_res, "200", "application/json"):
359
362
  return operations.ListTicketsResponse(
360
- result=unmarshal_json_response(List[components.Ticket], http_res),
363
+ result=unmarshal_json_response(
364
+ operations.ListTicketsResponseBody, http_res
365
+ ),
361
366
  headers=utils.get_response_headers(http_res.headers),
362
367
  )
363
368
  if utils.match_response(http_res, ["401", "403", "429"], "*"):
@@ -381,6 +386,7 @@ class Support(BaseSDK):
381
386
  account_id: str,
382
387
  cursor: Optional[str] = None,
383
388
  count: Optional[int] = None,
389
+ status: Optional[components.TicketStatus] = None,
384
390
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
385
391
  server_url: Optional[str] = None,
386
392
  timeout_ms: Optional[int] = None,
@@ -394,6 +400,7 @@ class Support(BaseSDK):
394
400
  :param account_id:
395
401
  :param cursor:
396
402
  :param count:
403
+ :param status:
397
404
  :param retries: Override the default retry configuration for this method
398
405
  :param server_url: Override the default server URL for this method
399
406
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -412,6 +419,7 @@ class Support(BaseSDK):
412
419
  request = operations.ListTicketsRequest(
413
420
  cursor=cursor,
414
421
  count=count,
422
+ status=status,
415
423
  account_id=account_id,
416
424
  )
417
425
 
@@ -459,7 +467,9 @@ class Support(BaseSDK):
459
467
 
460
468
  if utils.match_response(http_res, "200", "application/json"):
461
469
  return operations.ListTicketsResponse(
462
- result=unmarshal_json_response(List[components.Ticket], http_res),
470
+ result=unmarshal_json_response(
471
+ operations.ListTicketsResponseBody, http_res
472
+ ),
463
473
  headers=utils.get_response_headers(http_res.headers),
464
474
  )
465
475
  if utils.match_response(http_res, ["401", "403", "429"], "*"):
moovio_sdk/transfers.py CHANGED
@@ -12,7 +12,7 @@ from typing import Any, Dict, List, Mapping, Optional, Union
12
12
 
13
13
 
14
14
  class Transfers(BaseSDK):
15
- def generate_options_for_account(
15
+ def generate_options(
16
16
  self,
17
17
  *,
18
18
  account_id: str,
@@ -29,7 +29,7 @@ class Transfers(BaseSDK):
29
29
  server_url: Optional[str] = None,
30
30
  timeout_ms: Optional[int] = None,
31
31
  http_headers: Optional[Mapping[str, str]] = None,
32
- ) -> operations.CreateTransferOptionsForAccountResponse:
32
+ ) -> operations.CreateTransferOptionsResponse:
33
33
  r"""Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
34
34
  supply in the request body.
35
35
 
@@ -59,7 +59,7 @@ class Transfers(BaseSDK):
59
59
  else:
60
60
  base_url = self._get_url(base_url, url_variables)
61
61
 
62
- request = operations.CreateTransferOptionsForAccountRequest(
62
+ request = operations.CreateTransferOptionsRequest(
63
63
  account_id=account_id,
64
64
  create_transfer_options=components.CreateTransferOptions(
65
65
  source=utils.get_pydantic_model(
@@ -84,7 +84,7 @@ class Transfers(BaseSDK):
84
84
  user_agent_header="user-agent",
85
85
  accept_header_value="application/json",
86
86
  http_headers=http_headers,
87
- _globals=operations.CreateTransferOptionsForAccountGlobals(
87
+ _globals=operations.CreateTransferOptionsGlobals(
88
88
  x_moov_version=self.sdk_configuration.globals.x_moov_version,
89
89
  ),
90
90
  security=self.sdk_configuration.security,
@@ -110,7 +110,7 @@ class Transfers(BaseSDK):
110
110
  hook_ctx=HookContext(
111
111
  config=self.sdk_configuration,
112
112
  base_url=base_url or "",
113
- operation_id="createTransferOptionsForAccount",
113
+ operation_id="createTransferOptions",
114
114
  oauth2_scopes=[],
115
115
  security_source=get_security_from_env(
116
116
  self.sdk_configuration.security, components.Security
@@ -133,7 +133,7 @@ class Transfers(BaseSDK):
133
133
 
134
134
  response_data: Any = None
135
135
  if utils.match_response(http_res, "200", "application/json"):
136
- return operations.CreateTransferOptionsForAccountResponse(
136
+ return operations.CreateTransferOptionsResponse(
137
137
  result=unmarshal_json_response(components.TransferOptions, http_res),
138
138
  headers=utils.get_response_headers(http_res.headers),
139
139
  )
@@ -160,7 +160,7 @@ class Transfers(BaseSDK):
160
160
 
161
161
  raise errors.APIError("Unexpected response received", http_res)
162
162
 
163
- async def generate_options_for_account_async(
163
+ async def generate_options_async(
164
164
  self,
165
165
  *,
166
166
  account_id: str,
@@ -177,7 +177,7 @@ class Transfers(BaseSDK):
177
177
  server_url: Optional[str] = None,
178
178
  timeout_ms: Optional[int] = None,
179
179
  http_headers: Optional[Mapping[str, str]] = None,
180
- ) -> operations.CreateTransferOptionsForAccountResponse:
180
+ ) -> operations.CreateTransferOptionsResponse:
181
181
  r"""Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
182
182
  supply in the request body.
183
183
 
@@ -207,7 +207,7 @@ class Transfers(BaseSDK):
207
207
  else:
208
208
  base_url = self._get_url(base_url, url_variables)
209
209
 
210
- request = operations.CreateTransferOptionsForAccountRequest(
210
+ request = operations.CreateTransferOptionsRequest(
211
211
  account_id=account_id,
212
212
  create_transfer_options=components.CreateTransferOptions(
213
213
  source=utils.get_pydantic_model(
@@ -232,7 +232,7 @@ class Transfers(BaseSDK):
232
232
  user_agent_header="user-agent",
233
233
  accept_header_value="application/json",
234
234
  http_headers=http_headers,
235
- _globals=operations.CreateTransferOptionsForAccountGlobals(
235
+ _globals=operations.CreateTransferOptionsGlobals(
236
236
  x_moov_version=self.sdk_configuration.globals.x_moov_version,
237
237
  ),
238
238
  security=self.sdk_configuration.security,
@@ -258,7 +258,7 @@ class Transfers(BaseSDK):
258
258
  hook_ctx=HookContext(
259
259
  config=self.sdk_configuration,
260
260
  base_url=base_url or "",
261
- operation_id="createTransferOptionsForAccount",
261
+ operation_id="createTransferOptions",
262
262
  oauth2_scopes=[],
263
263
  security_source=get_security_from_env(
264
264
  self.sdk_configuration.security, components.Security
@@ -281,7 +281,7 @@ class Transfers(BaseSDK):
281
281
 
282
282
  response_data: Any = None
283
283
  if utils.match_response(http_res, "200", "application/json"):
284
- return operations.CreateTransferOptionsForAccountResponse(
284
+ return operations.CreateTransferOptionsResponse(
285
285
  result=unmarshal_json_response(components.TransferOptions, http_res),
286
286
  headers=utils.get_response_headers(http_res.headers),
287
287
  )
@@ -2797,277 +2797,3 @@ class Transfers(BaseSDK):
2797
2797
  raise errors.APIError("API error occurred", http_res, http_res_text)
2798
2798
 
2799
2799
  raise errors.APIError("Unexpected response received", http_res)
2800
-
2801
- def generate_options(
2802
- self,
2803
- *,
2804
- source: Union[
2805
- components.SourceDestinationOptions,
2806
- components.SourceDestinationOptionsTypedDict,
2807
- ],
2808
- destination: Union[
2809
- components.SourceDestinationOptions,
2810
- components.SourceDestinationOptionsTypedDict,
2811
- ],
2812
- amount: Union[components.Amount, components.AmountTypedDict],
2813
- retries: OptionalNullable[utils.RetryConfig] = UNSET,
2814
- server_url: Optional[str] = None,
2815
- timeout_ms: Optional[int] = None,
2816
- http_headers: Optional[Mapping[str, str]] = None,
2817
- ) -> operations.CreateTransferOptionsResponse:
2818
- r"""Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
2819
- supply in the request.
2820
-
2821
- Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
2822
-
2823
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
2824
- you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
2825
-
2826
- :param source:
2827
- :param destination:
2828
- :param amount:
2829
- :param retries: Override the default retry configuration for this method
2830
- :param server_url: Override the default server URL for this method
2831
- :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
2832
- :param http_headers: Additional headers to set or replace on requests.
2833
- """
2834
- base_url = None
2835
- url_variables = None
2836
- if timeout_ms is None:
2837
- timeout_ms = self.sdk_configuration.timeout_ms
2838
-
2839
- if server_url is not None:
2840
- base_url = server_url
2841
- else:
2842
- base_url = self._get_url(base_url, url_variables)
2843
-
2844
- request = components.CreateTransferOptions(
2845
- source=utils.get_pydantic_model(
2846
- source, components.SourceDestinationOptions
2847
- ),
2848
- destination=utils.get_pydantic_model(
2849
- destination, components.SourceDestinationOptions
2850
- ),
2851
- amount=utils.get_pydantic_model(amount, components.Amount),
2852
- )
2853
-
2854
- req = self._build_request(
2855
- method="POST",
2856
- path="/transfer-options",
2857
- base_url=base_url,
2858
- url_variables=url_variables,
2859
- request=request,
2860
- request_body_required=True,
2861
- request_has_path_params=False,
2862
- request_has_query_params=True,
2863
- user_agent_header="user-agent",
2864
- accept_header_value="application/json",
2865
- http_headers=http_headers,
2866
- _globals=operations.CreateTransferOptionsGlobals(
2867
- x_moov_version=self.sdk_configuration.globals.x_moov_version,
2868
- ),
2869
- security=self.sdk_configuration.security,
2870
- get_serialized_body=lambda: utils.serialize_request_body(
2871
- request, False, False, "json", components.CreateTransferOptions
2872
- ),
2873
- timeout_ms=timeout_ms,
2874
- )
2875
-
2876
- if retries == UNSET:
2877
- if self.sdk_configuration.retry_config is not UNSET:
2878
- retries = self.sdk_configuration.retry_config
2879
-
2880
- retry_config = None
2881
- if isinstance(retries, utils.RetryConfig):
2882
- retry_config = (retries, ["429", "500", "502", "503", "504"])
2883
-
2884
- http_res = self.do_request(
2885
- hook_ctx=HookContext(
2886
- config=self.sdk_configuration,
2887
- base_url=base_url or "",
2888
- operation_id="createTransferOptions",
2889
- oauth2_scopes=[],
2890
- security_source=get_security_from_env(
2891
- self.sdk_configuration.security, components.Security
2892
- ),
2893
- ),
2894
- request=req,
2895
- error_status_codes=[
2896
- "400",
2897
- "401",
2898
- "403",
2899
- "422",
2900
- "429",
2901
- "4XX",
2902
- "500",
2903
- "504",
2904
- "5XX",
2905
- ],
2906
- retry_config=retry_config,
2907
- )
2908
-
2909
- response_data: Any = None
2910
- if utils.match_response(http_res, "200", "application/json"):
2911
- return operations.CreateTransferOptionsResponse(
2912
- result=unmarshal_json_response(components.TransferOptions, http_res),
2913
- headers=utils.get_response_headers(http_res.headers),
2914
- )
2915
- if utils.match_response(http_res, "400", "application/json"):
2916
- response_data = unmarshal_json_response(errors.GenericErrorData, http_res)
2917
- raise errors.GenericError(response_data, http_res)
2918
- if utils.match_response(http_res, "422", "application/json"):
2919
- response_data = unmarshal_json_response(
2920
- errors.TransferOptionsValidationErrorData, http_res
2921
- )
2922
- raise errors.TransferOptionsValidationError(response_data, http_res)
2923
- if utils.match_response(http_res, ["401", "403", "429"], "*"):
2924
- http_res_text = utils.stream_to_text(http_res)
2925
- raise errors.APIError("API error occurred", http_res, http_res_text)
2926
- if utils.match_response(http_res, ["500", "504"], "*"):
2927
- http_res_text = utils.stream_to_text(http_res)
2928
- raise errors.APIError("API error occurred", http_res, http_res_text)
2929
- if utils.match_response(http_res, "4XX", "*"):
2930
- http_res_text = utils.stream_to_text(http_res)
2931
- raise errors.APIError("API error occurred", http_res, http_res_text)
2932
- if utils.match_response(http_res, "5XX", "*"):
2933
- http_res_text = utils.stream_to_text(http_res)
2934
- raise errors.APIError("API error occurred", http_res, http_res_text)
2935
-
2936
- raise errors.APIError("Unexpected response received", http_res)
2937
-
2938
- async def generate_options_async(
2939
- self,
2940
- *,
2941
- source: Union[
2942
- components.SourceDestinationOptions,
2943
- components.SourceDestinationOptionsTypedDict,
2944
- ],
2945
- destination: Union[
2946
- components.SourceDestinationOptions,
2947
- components.SourceDestinationOptionsTypedDict,
2948
- ],
2949
- amount: Union[components.Amount, components.AmountTypedDict],
2950
- retries: OptionalNullable[utils.RetryConfig] = UNSET,
2951
- server_url: Optional[str] = None,
2952
- timeout_ms: Optional[int] = None,
2953
- http_headers: Optional[Mapping[str, str]] = None,
2954
- ) -> operations.CreateTransferOptionsResponse:
2955
- r"""Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
2956
- supply in the request.
2957
-
2958
- Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
2959
-
2960
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
2961
- you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
2962
-
2963
- :param source:
2964
- :param destination:
2965
- :param amount:
2966
- :param retries: Override the default retry configuration for this method
2967
- :param server_url: Override the default server URL for this method
2968
- :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
2969
- :param http_headers: Additional headers to set or replace on requests.
2970
- """
2971
- base_url = None
2972
- url_variables = None
2973
- if timeout_ms is None:
2974
- timeout_ms = self.sdk_configuration.timeout_ms
2975
-
2976
- if server_url is not None:
2977
- base_url = server_url
2978
- else:
2979
- base_url = self._get_url(base_url, url_variables)
2980
-
2981
- request = components.CreateTransferOptions(
2982
- source=utils.get_pydantic_model(
2983
- source, components.SourceDestinationOptions
2984
- ),
2985
- destination=utils.get_pydantic_model(
2986
- destination, components.SourceDestinationOptions
2987
- ),
2988
- amount=utils.get_pydantic_model(amount, components.Amount),
2989
- )
2990
-
2991
- req = self._build_request_async(
2992
- method="POST",
2993
- path="/transfer-options",
2994
- base_url=base_url,
2995
- url_variables=url_variables,
2996
- request=request,
2997
- request_body_required=True,
2998
- request_has_path_params=False,
2999
- request_has_query_params=True,
3000
- user_agent_header="user-agent",
3001
- accept_header_value="application/json",
3002
- http_headers=http_headers,
3003
- _globals=operations.CreateTransferOptionsGlobals(
3004
- x_moov_version=self.sdk_configuration.globals.x_moov_version,
3005
- ),
3006
- security=self.sdk_configuration.security,
3007
- get_serialized_body=lambda: utils.serialize_request_body(
3008
- request, False, False, "json", components.CreateTransferOptions
3009
- ),
3010
- timeout_ms=timeout_ms,
3011
- )
3012
-
3013
- if retries == UNSET:
3014
- if self.sdk_configuration.retry_config is not UNSET:
3015
- retries = self.sdk_configuration.retry_config
3016
-
3017
- retry_config = None
3018
- if isinstance(retries, utils.RetryConfig):
3019
- retry_config = (retries, ["429", "500", "502", "503", "504"])
3020
-
3021
- http_res = await self.do_request_async(
3022
- hook_ctx=HookContext(
3023
- config=self.sdk_configuration,
3024
- base_url=base_url or "",
3025
- operation_id="createTransferOptions",
3026
- oauth2_scopes=[],
3027
- security_source=get_security_from_env(
3028
- self.sdk_configuration.security, components.Security
3029
- ),
3030
- ),
3031
- request=req,
3032
- error_status_codes=[
3033
- "400",
3034
- "401",
3035
- "403",
3036
- "422",
3037
- "429",
3038
- "4XX",
3039
- "500",
3040
- "504",
3041
- "5XX",
3042
- ],
3043
- retry_config=retry_config,
3044
- )
3045
-
3046
- response_data: Any = None
3047
- if utils.match_response(http_res, "200", "application/json"):
3048
- return operations.CreateTransferOptionsResponse(
3049
- result=unmarshal_json_response(components.TransferOptions, http_res),
3050
- headers=utils.get_response_headers(http_res.headers),
3051
- )
3052
- if utils.match_response(http_res, "400", "application/json"):
3053
- response_data = unmarshal_json_response(errors.GenericErrorData, http_res)
3054
- raise errors.GenericError(response_data, http_res)
3055
- if utils.match_response(http_res, "422", "application/json"):
3056
- response_data = unmarshal_json_response(
3057
- errors.TransferOptionsValidationErrorData, http_res
3058
- )
3059
- raise errors.TransferOptionsValidationError(response_data, http_res)
3060
- if utils.match_response(http_res, ["401", "403", "429"], "*"):
3061
- http_res_text = await utils.stream_to_text_async(http_res)
3062
- raise errors.APIError("API error occurred", http_res, http_res_text)
3063
- if utils.match_response(http_res, ["500", "504"], "*"):
3064
- http_res_text = await utils.stream_to_text_async(http_res)
3065
- raise errors.APIError("API error occurred", http_res, http_res_text)
3066
- if utils.match_response(http_res, "4XX", "*"):
3067
- http_res_text = await utils.stream_to_text_async(http_res)
3068
- raise errors.APIError("API error occurred", http_res, http_res_text)
3069
- if utils.match_response(http_res, "5XX", "*"):
3070
- http_res_text = await utils.stream_to_text_async(http_res)
3071
- raise errors.APIError("API error occurred", http_res, http_res_text)
3072
-
3073
- raise errors.APIError("Unexpected response received", http_res)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.13.3
3
+ Version: 0.13.5
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -1078,7 +1078,7 @@ you'll need to specify the `/terminal-applications.write` scope.
1078
1078
 
1079
1079
  ### [transfers](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md)
1080
1080
 
1081
- * [generate_options_for_account](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#generate_options_for_account) - Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
1081
+ * [generate_options](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#generate_options) - Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
1082
1082
  supply in the request body.
1083
1083
 
1084
1084
  The accountID in the route should the partner's accountID.
@@ -1146,13 +1146,6 @@ to learn more.
1146
1146
 
1147
1147
  To access this endpoint using a [token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
1148
1148
  to specify the `/accounts/{accountID}/transfers.write` scope.
1149
- * [generate_options](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#generate_options) - Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
1150
- supply in the request.
1151
-
1152
- Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
1153
-
1154
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1155
- you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1156
1149
 
1157
1150
  ### [underwriting](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/underwriting/README.md)
1158
1151
 
@@ -1455,43 +1448,43 @@ with Moov(
1455
1448
 
1456
1449
 
1457
1450
  **Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
1458
- * [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 62 of 143 methods.*
1459
- * [`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 143 methods.*
1460
- * [`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 143 methods.*
1461
- * [`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 2 of 143 methods.*
1462
- * [`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 143 methods.*
1463
- * [`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 143 methods.*
1464
- * [`CreateAccountResponseBody`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createaccountresponsebody.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 143 methods.*
1465
- * [`UpdateAccountResponseBody`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateaccountresponsebody.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 143 methods.*
1466
- * [`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 143 methods.*
1467
- * [`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 143 methods.*
1468
- * [`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 143 methods.*
1469
- * [`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 143 methods.*
1470
- * [`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 143 methods.*
1471
- * [`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 143 methods.*
1472
- * [`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 143 methods.*
1473
- * [`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 143 methods.*
1474
- * [`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 143 methods.*
1475
- * [`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 143 methods.*
1476
- * [`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 143 methods.*
1477
- * [`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 143 methods.*
1478
- * [`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 143 methods.*
1479
- * [`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 143 methods.*
1480
- * [`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 143 methods.*
1481
- * [`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 143 methods.*
1482
- * [`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 143 methods.*
1483
- * [`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 143 methods.*
1484
- * [`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 143 methods.*
1485
- * [`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 143 methods.*
1486
- * [`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 143 methods.*
1487
- * [`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 143 methods.*
1488
- * [`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 143 methods.*
1489
- * [`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 143 methods.*
1490
- * [`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 143 methods.*
1491
- * [`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 143 methods.*
1492
- * [`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 143 methods.*
1493
- * [`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 143 methods.*
1494
- * [`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 1 of 143 methods.*
1451
+ * [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 61 of 142 methods.*
1452
+ * [`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 142 methods.*
1453
+ * [`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 142 methods.*
1454
+ * [`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 142 methods.*
1455
+ * [`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 142 methods.*
1456
+ * [`CreateAccountResponseBody`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createaccountresponsebody.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 142 methods.*
1457
+ * [`UpdateAccountResponseBody`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateaccountresponsebody.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 142 methods.*
1458
+ * [`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 142 methods.*
1459
+ * [`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 142 methods.*
1460
+ * [`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 142 methods.*
1461
+ * [`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 142 methods.*
1462
+ * [`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 142 methods.*
1463
+ * [`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 142 methods.*
1464
+ * [`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 142 methods.*
1465
+ * [`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 142 methods.*
1466
+ * [`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 142 methods.*
1467
+ * [`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 142 methods.*
1468
+ * [`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 142 methods.*
1469
+ * [`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 142 methods.*
1470
+ * [`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 142 methods.*
1471
+ * [`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 142 methods.*
1472
+ * [`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 142 methods.*
1473
+ * [`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 142 methods.*
1474
+ * [`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 142 methods.*
1475
+ * [`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 142 methods.*
1476
+ * [`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 142 methods.*
1477
+ * [`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 142 methods.*
1478
+ * [`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 142 methods.*
1479
+ * [`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 142 methods.*
1480
+ * [`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 142 methods.*
1481
+ * [`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 142 methods.*
1482
+ * [`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 142 methods.*
1483
+ * [`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 142 methods.*
1484
+ * [`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 142 methods.*
1485
+ * [`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 142 methods.*
1486
+ * [`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 142 methods.*
1487
+ * [`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 1 of 142 methods.*
1495
1488
  * [`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.
1496
1489
 
1497
1490
  </details>
@@ -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=Yi9LD8_sd4zG7_idzCZY4MTxTXMhDlmCdpQvU4dXFI4,3049
6
- moovio_sdk/_version.py,sha256=HQLsakR3GL4JSFA4kXX_clLHAuuoqkGskiEbMSp0e5g,466
6
+ moovio_sdk/_version.py,sha256=sGjiFAfFhxWNnJ84tZc_sAPWAz0_OYjzxyOpbD3CbSU,466
7
7
  moovio_sdk/account_terminal_applications.py,sha256=FdmR9Yl_njyg2J-AK3d_I_OINKzkTZrq19JM4lHDzYM,38480
8
8
  moovio_sdk/accounts.py,sha256=B82uLoV_GgKNYnUYfqFSePvla09WF-7Ws95tD51vBKI,100716
9
9
  moovio_sdk/adjustments.py,sha256=U2AtbA2k71S1IpwjJ96LT4SdGUDqR3JEgOSvMm9a2yU,17613
@@ -27,7 +27,7 @@ moovio_sdk/industries.py,sha256=ZUdnD3w84e1oOOQlye60I9QTFn_0JLGF0uMDrASl8A4,9372
27
27
  moovio_sdk/institutions.py,sha256=Kp90bbtOsfb1slR_8RgmYHkgH8G6Pp9FZds2rc7J6Ck,20523
28
28
  moovio_sdk/issuing_transactions.py,sha256=pckxIPSAJDMt-PcKduqdVhd7fsbUwCKzlkGb_UBwRW0,48949
29
29
  moovio_sdk/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
30
- moovio_sdk/models/components/__init__.py,sha256=FY6i3Ciw8p5aVBNL48Zz0JlTtFHAtCzxGhmr5W7iA_A,120061
30
+ moovio_sdk/models/components/__init__.py,sha256=gVYiFcGijWVj-T4ni8gxSxzxnLFkqedRB8u93LQAeAc,120295
31
31
  moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
32
32
  moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
33
33
  moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
@@ -120,7 +120,7 @@ moovio_sdk/models/components/cardpaymentdetailserror.py,sha256=T2g_b03KoC5Ws_2os
120
120
  moovio_sdk/models/components/cardpaymentpaymentmethod.py,sha256=fNPMJZcwnSkrBbtwBpmBETQNBu-y_VzlXekw6O5zNzg,1083
121
121
  moovio_sdk/models/components/cardpaymentsettings.py,sha256=fU4e004XIPDLNYwf6o2cpIbfQASlNP9fPL8kF_0r-pc,998
122
122
  moovio_sdk/models/components/cardpresentpaymentpaymentmethod.py,sha256=FOGWUNSdmOrFBBTCbltj-P-tLqrtCqLsbkTsJH9Fk0w,1546
123
- moovio_sdk/models/components/cardtransactiondetails.py,sha256=Dvd_0orePLNjSEfeImQnkD3neb76df_cfT884sENqL8,3853
123
+ moovio_sdk/models/components/cardtransactiondetails.py,sha256=vzjXTu_DafVW6G7m_4V9JrQJWtPzyrFpnRW8z5r3dCo,4222
124
124
  moovio_sdk/models/components/cardtransactionfailurecode.py,sha256=Ve9T_tGy0OGZavczlRu-k267hq99xAzhTOu4juG7Gqg,1287
125
125
  moovio_sdk/models/components/cardtransactionstatus.py,sha256=xKtKp1pyEs7g5yTkAqtxgrO_IECkIcb37ZM2pzP7XOU,399
126
126
  moovio_sdk/models/components/cardtype.py,sha256=c7kSvZqguQkFO3gwy66gEguSNJp5EQqYzjA2wAi_fZ8,283
@@ -258,6 +258,7 @@ moovio_sdk/models/components/issuingintervallimit.py,sha256=ALvOFD1v-OY--fOJn6op
258
258
  moovio_sdk/models/components/issuingmerchantdata.py,sha256=Y8T-FTzpN_WCMYsqQWz68eHlwYB4KRI5ZbIxH3k8k-E,1547
259
259
  moovio_sdk/models/components/issuingvelocitylimit.py,sha256=EAMkVPkcNzKoQnhNEP7hWxODIAr62KkFegtGOmGE8K8,808
260
260
  moovio_sdk/models/components/issuingvelocitylimiterror.py,sha256=gDN82-mW3oJzxclhbhJBmSHtfMkPLrMuJt55kvk3cqI,458
261
+ moovio_sdk/models/components/itemlistnextpage.py,sha256=3NyvKI3WOdio9RQFmyHqKmuL8PwcqUdtx5u94zimL_o,428
261
262
  moovio_sdk/models/components/jsonwebkey.py,sha256=Wvp9Crb2wNzFaU1f-C67kAkcA7md1gl_w-f6loVTw80,3068
262
263
  moovio_sdk/models/components/linkaccountterminalapplication.py,sha256=cvkxJMHb0Hgky6G43fpSjOkDraftOtCI7s_sRkBVgZw,709
263
264
  moovio_sdk/models/components/linkapplepay.py,sha256=gPYSG9s7zcAcRh5bbWqzKRXgyfv-WbwEnMGJZm7a84Q,2136
@@ -390,7 +391,7 @@ moovio_sdk/models/components/taxidupdate.py,sha256=X2_Nw8Nvc0E1mahHDZqrqCKv4eyid
390
391
  moovio_sdk/models/components/terminalapplication.py,sha256=GKmGi8i425YxFMW4BU_zTghe6YQkZ1Vc0w-LyiwEh3w,2455
391
392
  moovio_sdk/models/components/terminalapplicationplatform.py,sha256=p-880ptVN5vub4DlYbP_VTPyPYuDEYMIZql2fI3FopU,296
392
393
  moovio_sdk/models/components/terminalapplicationstatus.py,sha256=snaXCVyr1J3iEcrW09r3Mp1FtU46dbhGJgcTx3UlF04,326
393
- moovio_sdk/models/components/terminalcard.py,sha256=goFEhKML4vyksdH4u0N0Pk33hIcgIZ34anVu7xcrgtA,3100
394
+ moovio_sdk/models/components/terminalcard.py,sha256=YPh3JRHQqRWKJrJxkUtv1KHMNWtpYe2STXGuFAPV9ek,3658
394
395
  moovio_sdk/models/components/terminalconfiguration.py,sha256=cr5Rdj29p4F9bDrTI0ZpwRznr4OypV4tXb-NX4dT4f4,422
395
396
  moovio_sdk/models/components/termsofservice.py,sha256=g_v_9ghfkFyf8OJTfuTy5hC1vCl3u3msGKl0tufIN6k,918
396
397
  moovio_sdk/models/components/termsofserviceerror.py,sha256=KnpM_Tz-DH1GjqoIfQIIlq-9raPGVITItFbdot2m770,1093
@@ -522,7 +523,7 @@ moovio_sdk/models/errors/updateunderwritingerror.py,sha256=9Yvb0mE-TgADUbKPcmVGz
522
523
  moovio_sdk/models/errors/upsertunderwritingerror.py,sha256=iiMZUIFT1beUXeeKw1HEDTb62XcywG6W2O4hxuQVNvQ,3110
523
524
  moovio_sdk/models/internal/__init__.py,sha256=7kjDhcmI428H0YHeZHJRcKSXQE1N2dTPHi3FtLVFaMM,1120
524
525
  moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
525
- moovio_sdk/models/operations/__init__.py,sha256=UsPMgDw9_jUMJY2TzLaYKqcRc4-UoAydyCh1iIai4bo,123004
526
+ moovio_sdk/models/operations/__init__.py,sha256=Ub0JdigL_i2kdIlacE4fbuyj1Ie3I2p3XgUrntL-BtQ,122352
526
527
  moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
527
528
  moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
528
529
  moovio_sdk/models/operations/cancelschedule.py,sha256=X0vmSDaW6vyM387Tf02KSBCZNggKxNYm_T0W5zJY494,2394
@@ -544,8 +545,7 @@ moovio_sdk/models/operations/createsweepconfig.py,sha256=mC-dbVIizvTJjYTygLrFOO-
544
545
  moovio_sdk/models/operations/createterminalapplication.py,sha256=n7mnj-ixVXSV8El7dVhwueNm4Pd8xTiTefI1oayrIGE,2188
545
546
  moovio_sdk/models/operations/createticket.py,sha256=GNg1dXQ3T4ywglSRkVN37nJ1ouiNU06tEousvPyZaJA,2663
546
547
  moovio_sdk/models/operations/createtransfer.py,sha256=UeGpxBVsHy_sES-xLfdAqNFXExQxYgbPIQOOlAItzcU,4706
547
- moovio_sdk/models/operations/createtransferoptions.py,sha256=DCrQtu3VPSdEOSt8gFnZHcCtRIN-c6NHBohifMolCzg,2139
548
- moovio_sdk/models/operations/createtransferoptionsforaccount.py,sha256=l0rIf6sLKZU4Kq5PvmTJtYYlMRqpvXuhgIn5_P7alT4,3005
548
+ moovio_sdk/models/operations/createtransferoptions.py,sha256=4bPqmO892YebolkzL3NeLQKylZu0neN5pUoEWdBpTm8,2945
549
549
  moovio_sdk/models/operations/deletedisputeevidencefile.py,sha256=NHUuvakVuXiCwqI_gDDgjhFAAfKypztOzasr0S78KQE,2648
550
550
  moovio_sdk/models/operations/deleterepresentative.py,sha256=H3bKQTMMsB9_wCqxfZqwgq-NljV5W-lGWzXIHEnxxv0,2582
551
551
  moovio_sdk/models/operations/deleteterminalapplication.py,sha256=4PWTRg4RR--XoZK-ZZgjNYlMbefs-Diioc8Om1bbHO8,2307
@@ -634,7 +634,7 @@ moovio_sdk/models/operations/listsweepconfigs.py,sha256=FyXZ5L01-nF52nj4WCqKEwGE
634
634
  moovio_sdk/models/operations/listsweeps.py,sha256=RcjWsbeutBY68KA1J3NevCjcAgrZOnl60xQA6RWgSdo,3659
635
635
  moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qvn6drroaW5Hfyb7lF2ELdN4Ue-88,2327
636
636
  moovio_sdk/models/operations/listticketmessages.py,sha256=YnOys5jBUweItLMkdGbfE-DL3KVt5Z-28LjV86Bdq7U,2619
637
- moovio_sdk/models/operations/listtickets.py,sha256=bBIGNVr3cinpoLmGTvlCOwlQMPnDG-firKbyXlaNacY,2723
637
+ moovio_sdk/models/operations/listtickets.py,sha256=T1408Rx5lmpdHT16Pxv1BblaRm06soE6ppIrdYVgPfU,3685
638
638
  moovio_sdk/models/operations/listtransfers.py,sha256=ERB6HuonDVt-tYdwgU4fYHhTCHp79DvcgKjCp6F4Z_Y,6786
639
639
  moovio_sdk/models/operations/listwallets.py,sha256=Yfpc2ZMHjDiCUSl9R9NddqEezlM2mGXzGlWxMp_xyAY,2350
640
640
  moovio_sdk/models/operations/listwallettransactions.py,sha256=Q6fdn8q2IkY9tM31mtWkCrVvpKSUt4spSFuJ97UVNTc,7848
@@ -676,10 +676,10 @@ moovio_sdk/representatives.py,sha256=3XG8tnLGs5pB8gDzMNgGCxiqcHp29vFSc12G7S-K3A8
676
676
  moovio_sdk/scheduling.py,sha256=CldoqnTp7yEZHc0qESYaSYLYQC22M1Y73jvQk_SNHc0,60556
677
677
  moovio_sdk/sdk.py,sha256=9PhJ_WSLVeg8HDfviwTVIfpeyujXR83dyHtCvCB5B20,11998
678
678
  moovio_sdk/sdkconfiguration.py,sha256=vvZHznUDI2m3Z8ddTKDFUXkQu4mNBGX8Q9Zx7XpR3WY,1665
679
- moovio_sdk/support.py,sha256=0c71FrE0cI3juxZ07p_6kopwpxYrNndokE8ThVuOypQ,47657
679
+ moovio_sdk/support.py,sha256=4_Z1Y3_FKA42UssvFd3sOZCG7HpNIWH6wPOKyx3C0FE,47971
680
680
  moovio_sdk/sweeps.py,sha256=bp71dtVpazfJo3BmB7SKru5e9XLWgFKZEVJ4R-fw6WQ,61528
681
681
  moovio_sdk/terminal_applications.py,sha256=dkqloZojg7fNo-cJ2HQxlwolKdKbgSljzBR6xz6E7tA,39457
682
- moovio_sdk/transfers.py,sha256=SbSkuIGbnNWEO4YNefx4yPQ7ucj5Qz2I172eqfkf4Ag,138159
682
+ moovio_sdk/transfers.py,sha256=VqHZ4w2SHjVWoxY5AtqRBNAxcgY2N-aFLMKJ4XBMU7o,126143
683
683
  moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
684
684
  moovio_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
685
685
  moovio_sdk/underwriting.py,sha256=JoYSAiv8vOzVxZLcm9JYgtVoZQwuD0kp16odyyy49Kw,37104
@@ -702,6 +702,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
702
702
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
703
703
  moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
704
704
  moovio_sdk/wallets.py,sha256=V5yUDAo42AG9AlkMsY_9_mmF65JJM-9ApLJdxqIIZLE,17591
705
- moovio_sdk-0.13.3.dist-info/METADATA,sha256=M0geLerFJAOArcJgUER814SwxHODqCYTbVz7_-68Av8,110065
706
- moovio_sdk-0.13.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
707
- moovio_sdk-0.13.3.dist-info/RECORD,,
705
+ moovio_sdk-0.13.5.dist-info/METADATA,sha256=YRMP8WUDklA8-j-AzYw8XO_6okD8lkIpAFrsynM7wGo,109468
706
+ moovio_sdk-0.13.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
707
+ moovio_sdk-0.13.5.dist-info/RECORD,,
@@ -1,82 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from moovio_sdk.models.components import (
5
- createtransferoptions as components_createtransferoptions,
6
- transferoptions as components_transferoptions,
7
- )
8
- from moovio_sdk.types import BaseModel
9
- from moovio_sdk.utils import (
10
- FieldMetadata,
11
- HeaderMetadata,
12
- PathParamMetadata,
13
- RequestMetadata,
14
- )
15
- import pydantic
16
- from typing import Dict, List, Optional
17
- from typing_extensions import Annotated, NotRequired, TypedDict
18
-
19
-
20
- class CreateTransferOptionsForAccountGlobalsTypedDict(TypedDict):
21
- x_moov_version: NotRequired[str]
22
- r"""Specify an API version.
23
-
24
- API versioning follows the format `vYYYY.QQ.BB`, where
25
- - `YYYY` is the year
26
- - `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
27
- - `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
28
- - For example, `v2024.01.00` is the initial release of the first quarter of 2024.
29
-
30
- The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
31
- """
32
-
33
-
34
- class CreateTransferOptionsForAccountGlobals(BaseModel):
35
- x_moov_version: Annotated[
36
- Optional[str],
37
- pydantic.Field(alias="x-moov-version"),
38
- FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
39
- ] = "v2024.01.00"
40
- r"""Specify an API version.
41
-
42
- API versioning follows the format `vYYYY.QQ.BB`, where
43
- - `YYYY` is the year
44
- - `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
45
- - `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
46
- - For example, `v2024.01.00` is the initial release of the first quarter of 2024.
47
-
48
- The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
49
- """
50
-
51
-
52
- class CreateTransferOptionsForAccountRequestTypedDict(TypedDict):
53
- account_id: str
54
- r"""The partner's Moov account ID."""
55
- create_transfer_options: (
56
- components_createtransferoptions.CreateTransferOptionsTypedDict
57
- )
58
-
59
-
60
- class CreateTransferOptionsForAccountRequest(BaseModel):
61
- account_id: Annotated[
62
- str,
63
- pydantic.Field(alias="accountID"),
64
- FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
65
- ]
66
- r"""The partner's Moov account ID."""
67
-
68
- create_transfer_options: Annotated[
69
- components_createtransferoptions.CreateTransferOptions,
70
- FieldMetadata(request=RequestMetadata(media_type="application/json")),
71
- ]
72
-
73
-
74
- class CreateTransferOptionsForAccountResponseTypedDict(TypedDict):
75
- headers: Dict[str, List[str]]
76
- result: components_transferoptions.TransferOptionsTypedDict
77
-
78
-
79
- class CreateTransferOptionsForAccountResponse(BaseModel):
80
- headers: Dict[str, List[str]]
81
-
82
- result: components_transferoptions.TransferOptions