moovio_sdk 0.14.0__py3-none-any.whl → 0.14.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/models/components/__init__.py +32 -8
- moovio_sdk/models/components/createwallet.py +26 -0
- moovio_sdk/models/components/patchwallet.py +34 -0
- moovio_sdk/models/components/paymentlinkpayoutdetails.py +2 -0
- moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py +5 -3
- moovio_sdk/models/components/payoutrecipient.py +10 -3
- moovio_sdk/models/components/payoutrecipienterror.py +4 -0
- moovio_sdk/models/components/requirementid.py +126 -18
- moovio_sdk/models/components/wallet.py +51 -1
- moovio_sdk/models/components/walletstatus.py +14 -0
- moovio_sdk/models/components/wallettype.py +14 -0
- moovio_sdk/models/components/webhookdata.py +24 -12
- moovio_sdk/models/components/webhookdatawalletcreated.py +17 -0
- moovio_sdk/models/components/webhookdatawalletupdated.py +29 -0
- moovio_sdk/models/components/webhookeventtype.py +2 -0
- moovio_sdk/models/errors/__init__.py +10 -0
- moovio_sdk/models/errors/createwalleterror.py +29 -0
- moovio_sdk/models/errors/patchwalleterror.py +31 -0
- moovio_sdk/models/operations/__init__.py +40 -0
- moovio_sdk/models/operations/createwallet.py +80 -0
- moovio_sdk/models/operations/listwallets.py +40 -2
- moovio_sdk/models/operations/updatewallet.py +89 -0
- moovio_sdk/wallets.py +569 -1
- {moovio_sdk-0.14.0.dist-info → moovio_sdk-0.14.2.dist-info}/METADATA +53 -39
- {moovio_sdk-0.14.0.dist-info → moovio_sdk-0.14.2.dist-info}/RECORD +27 -18
- moovio_sdk/models/components/payoutrecipientupdate.py +0 -24
- {moovio_sdk-0.14.0.dist-info → moovio_sdk-0.14.2.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.14.
|
3
|
+
Version: 0.14.2
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9.2
|
@@ -1212,6 +1212,12 @@ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1212
1212
|
|
1213
1213
|
### [wallets](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md)
|
1214
1214
|
|
1215
|
+
* [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md#create) - Create a new wallet for an account. You can specify optional attributes such as a display name and description to specify the intended use of the wallet. This will generate a new moov-wallet payment method.
|
1216
|
+
|
1217
|
+
Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more.
|
1218
|
+
|
1219
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1220
|
+
you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
|
1215
1221
|
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md#list) - List the wallets associated with a Moov account.
|
1216
1222
|
|
1217
1223
|
Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more.
|
@@ -1224,6 +1230,12 @@ Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to l
|
|
1224
1230
|
|
1225
1231
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1226
1232
|
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
1233
|
+
* [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md#update) - Update properties of an existing wallet such as name, description, status, or metadata.
|
1234
|
+
|
1235
|
+
Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more.
|
1236
|
+
|
1237
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1238
|
+
you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
|
1227
1239
|
|
1228
1240
|
</details>
|
1229
1241
|
<!-- End Available Resources and Operations [operations] -->
|
@@ -1464,7 +1476,7 @@ with Moov(
|
|
1464
1476
|
**Primary error:**
|
1465
1477
|
* [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py): The base class for HTTP error responses.
|
1466
1478
|
|
1467
|
-
<details><summary>Less common errors (
|
1479
|
+
<details><summary>Less common errors (44)</summary>
|
1468
1480
|
|
1469
1481
|
<br />
|
1470
1482
|
|
@@ -1475,43 +1487,45 @@ with Moov(
|
|
1475
1487
|
|
1476
1488
|
|
1477
1489
|
**Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
|
1478
|
-
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to
|
1479
|
-
* [`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
|
1480
|
-
* [`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
|
1481
|
-
* [`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
|
1482
|
-
* [`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
|
1483
|
-
* [`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
|
1484
|
-
* [`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
|
1485
|
-
* [`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
|
1486
|
-
* [`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
|
1487
|
-
* [`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
|
1488
|
-
* [`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
|
1489
|
-
* [`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
|
1490
|
-
* [`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
|
1491
|
-
* [`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
|
1492
|
-
* [`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
|
1493
|
-
* [`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
|
1494
|
-
* [`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
|
1495
|
-
* [`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
|
1496
|
-
* [`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
|
1497
|
-
* [`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
|
1498
|
-
* [`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
|
1499
|
-
* [`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
|
1500
|
-
* [`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
|
1501
|
-
* [`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
|
1502
|
-
* [`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
|
1503
|
-
* [`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
|
1504
|
-
* [`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
|
1505
|
-
* [`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
|
1506
|
-
* [`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
|
1507
|
-
* [`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
|
1508
|
-
* [`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
|
1509
|
-
* [`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
|
1510
|
-
* [`
|
1511
|
-
* [`
|
1512
|
-
* [`
|
1513
|
-
* [`
|
1514
|
-
* [`
|
1490
|
+
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 64 of 145 methods.*
|
1491
|
+
* [`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 145 methods.*
|
1492
|
+
* [`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 145 methods.*
|
1493
|
+
* [`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 145 methods.*
|
1494
|
+
* [`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 145 methods.*
|
1495
|
+
* [`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 145 methods.*
|
1496
|
+
* [`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 145 methods.*
|
1497
|
+
* [`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 145 methods.*
|
1498
|
+
* [`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 145 methods.*
|
1499
|
+
* [`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 145 methods.*
|
1500
|
+
* [`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 145 methods.*
|
1501
|
+
* [`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 145 methods.*
|
1502
|
+
* [`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 145 methods.*
|
1503
|
+
* [`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 145 methods.*
|
1504
|
+
* [`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 145 methods.*
|
1505
|
+
* [`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 145 methods.*
|
1506
|
+
* [`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 145 methods.*
|
1507
|
+
* [`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 145 methods.*
|
1508
|
+
* [`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 145 methods.*
|
1509
|
+
* [`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 145 methods.*
|
1510
|
+
* [`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 145 methods.*
|
1511
|
+
* [`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 145 methods.*
|
1512
|
+
* [`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 145 methods.*
|
1513
|
+
* [`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 145 methods.*
|
1514
|
+
* [`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 145 methods.*
|
1515
|
+
* [`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 145 methods.*
|
1516
|
+
* [`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 145 methods.*
|
1517
|
+
* [`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 145 methods.*
|
1518
|
+
* [`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 145 methods.*
|
1519
|
+
* [`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 145 methods.*
|
1520
|
+
* [`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 145 methods.*
|
1521
|
+
* [`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 145 methods.*
|
1522
|
+
* [`CreateWalletError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createwalleterror.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 145 methods.*
|
1523
|
+
* [`PatchWalletError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchwalleterror.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 145 methods.*
|
1524
|
+
* [`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 145 methods.*
|
1525
|
+
* [`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 145 methods.*
|
1526
|
+
* [`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 145 methods.*
|
1527
|
+
* [`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 145 methods.*
|
1528
|
+
* [`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 145 methods.*
|
1515
1529
|
* [`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.
|
1516
1530
|
|
1517
1531
|
</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=
|
6
|
+
moovio_sdk/_version.py,sha256=jogpgiW4JBG_NWzsDLgMSF4g2T8xbXKpPiir1xUmzII,466
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=ldTg5uAukIAwfziQFgmuq6vlAsUPS5DqMkgdCx9bwn8,38522
|
8
8
|
moovio_sdk/accounts.py,sha256=lewHrThSM4fGY8kAut2d27dNJmtV0CPzGvwzmeqStnY,100356
|
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=
|
30
|
+
moovio_sdk/models/components/__init__.py,sha256=DSYASXPXP5pRJMGoFWkZp-Dj7GBBHme_1sUqywRflhE,122666
|
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
|
@@ -175,6 +175,7 @@ moovio_sdk/models/components/createtransferoptions.py,sha256=_yzV9xGWwP-Jg3PMCpw
|
|
175
175
|
moovio_sdk/models/components/createtransfersource.py,sha256=OJNAAAYZiZqKuqvCQ_lmADHPuDhigmm99EwyQjmUIy4,1964
|
176
176
|
moovio_sdk/models/components/createtransfersourceach.py,sha256=7WeF6YEoEvC-Dfn4mNTw9up_ZmoUg_QXCWhs-_ayEdg,1848
|
177
177
|
moovio_sdk/models/components/createtransfersourcecard.py,sha256=hCUSzjPw6NyPLMEnSLjVGbMqhrSk55hwBU4PE7YD2Lc,1452
|
178
|
+
moovio_sdk/models/components/createwallet.py,sha256=Mq383HA5Cbz9754yFt3YVjuUjfK9IUs6cnlF8Sgmb3g,847
|
178
179
|
moovio_sdk/models/components/customersupport.py,sha256=VzZ7vBAKZC9q9KDDCXuH8EenEFiu3bGiOuCAvcHfHYE,1124
|
179
180
|
moovio_sdk/models/components/customersupporterror.py,sha256=0tHko8wHUGwaEcPq7lOgZyZbZ20Nuf2eJeRiIaBqP5U,768
|
180
181
|
moovio_sdk/models/components/debitholdperiod.py,sha256=nAcdMuNrf-6bcXsPf68y0kfEx5qrS7b4OMQIOh-O1o0,400
|
@@ -301,6 +302,7 @@ moovio_sdk/models/components/patchindividual.py,sha256=eG1P_IJkcu6qdeXD7uudZA2QX
|
|
301
302
|
moovio_sdk/models/components/patchprofile.py,sha256=85D_j6JmQfJiFT15FM2HKDRzXSDH-Qb5rpniFeMKzLM,1072
|
302
303
|
moovio_sdk/models/components/patchsweepconfig.py,sha256=vYemWuGYohZzNkbDF0i4hrF2JdeldnIIpnBzM9i2ABE,3751
|
303
304
|
moovio_sdk/models/components/patchtransfer.py,sha256=2-jon35ZIrfCngarDcHPVJUglgxbR-juzDaORKUxmjU,1807
|
305
|
+
moovio_sdk/models/components/patchwallet.py,sha256=hLD5IJOVMTKu9DzirKP2-sNyGy1dIva5bgAB5rgJSpA,1301
|
304
306
|
moovio_sdk/models/components/paymentdetailserror.py,sha256=tGvJsD7XWAXDVXhUTYztwaAycso23EqLuwL5C5ae-ns,1069
|
305
307
|
moovio_sdk/models/components/paymentlink.py,sha256=pHy7226nGTa1DJOdY4imX1cn2XP8CoBe6yNOgaZ40YM,4232
|
306
308
|
moovio_sdk/models/components/paymentlinkcustomeroptions.py,sha256=WIz0WjMDKn11O0XkHxqx9h0x4mp03OQQ__95ohR2GQU,1264
|
@@ -308,8 +310,8 @@ moovio_sdk/models/components/paymentlinkdisplayoptions.py,sha256=9rT_QoeVtqClxQK
|
|
308
310
|
moovio_sdk/models/components/paymentlinkdisplayoptionsupdate.py,sha256=Gi48psRbzJsT7H_M6iwfs7Jv0AVcqJYXl7oSKm2VWQI,1452
|
309
311
|
moovio_sdk/models/components/paymentlinkpaymentdetails.py,sha256=qxu-fxQQxspVBiFLSXhw5NUJYOL4yUaf4wULvMuvFA8,1682
|
310
312
|
moovio_sdk/models/components/paymentlinkpaymentdetailsupdate.py,sha256=AzpriAe0vOmdKQ44TH4xDHvYHJyTNGM2mgsQLbTvMHg,1733
|
311
|
-
moovio_sdk/models/components/paymentlinkpayoutdetails.py,sha256=
|
312
|
-
moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=
|
313
|
+
moovio_sdk/models/components/paymentlinkpayoutdetails.py,sha256=QqgdGB7_Ira0EUxA0EpGm9ryytJU-oJ76pbXyuBsRtg,1350
|
314
|
+
moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=yGLjjc0GKKOFfR8C8gjszZtdAUBbHcVzcd5F7qzGo6A,1454
|
313
315
|
moovio_sdk/models/components/paymentlinkstatus.py,sha256=msrQMJyTpPfxsiY_jlYLUjfozjTUqD1er-UJ3bmFMiw,258
|
314
316
|
moovio_sdk/models/components/paymentmethod.py,sha256=0Y5Dw43hTWrT3md6TYLWw71UaqgXx-FoGDkC2yRNQaM,3106
|
315
317
|
moovio_sdk/models/components/paymentmethodsbankaccount.py,sha256=hFtw7jmbaMqyhqWV1lv7lsU-jPxtZHC8TB8lQRMMO7M,2160
|
@@ -317,9 +319,8 @@ moovio_sdk/models/components/paymentmethodscard.py,sha256=TaC-4I1GI-ZYeu79vrQB0B
|
|
317
319
|
moovio_sdk/models/components/paymentmethodswallet.py,sha256=j-MNQmjwCiS29UbMCoeR8JTH981oicIeCFaZfzP4UTI,388
|
318
320
|
moovio_sdk/models/components/paymentmethodtype.py,sha256=fix1w2wY7-xoKQH5wYb0kbMeNlg5gM3GGqCpiYJHvi4,678
|
319
321
|
moovio_sdk/models/components/payoutdetailserror.py,sha256=UkRP7L99TiPkNcIEGEhR8HJbLeTPhOHRSDTGu3i92uM,685
|
320
|
-
moovio_sdk/models/components/payoutrecipient.py,sha256=
|
321
|
-
moovio_sdk/models/components/payoutrecipienterror.py,sha256=
|
322
|
-
moovio_sdk/models/components/payoutrecipientupdate.py,sha256=f-DK-Ttzt4Ui4kQVv7F_7v7oPxle__RpXP0DXaSH4CY,705
|
322
|
+
moovio_sdk/models/components/payoutrecipient.py,sha256=qriv-_mDdRPS5RQ9UXgNVDa9ydY-4jhZSgwg21MRi7s,964
|
323
|
+
moovio_sdk/models/components/payoutrecipienterror.py,sha256=OJi0x382cNDWddf7jWM-uXvnFXueydleePkztHG9Qt8,549
|
323
324
|
moovio_sdk/models/components/pendinglitigation.py,sha256=Re7llSNhefWKnCeC4vUdkWIHyWLo_qOsBS3HNAMd_ok,732
|
324
325
|
moovio_sdk/models/components/phonenumber.py,sha256=s4GOoLw9s1oJ8e5pdU_TvZ9FXEIQM9x1atoh5NhnGsw,513
|
325
326
|
moovio_sdk/models/components/phonenumbererror.py,sha256=nmCqJfcBIuphMCEwZlriaqL31BQTQmWCFs0Km2k3V4Q,523
|
@@ -347,7 +348,7 @@ moovio_sdk/models/components/representativeresponsibilitieserror.py,sha256=EgVuy
|
|
347
348
|
moovio_sdk/models/components/requestcard.py,sha256=zRqFMEQt45o_kHaUIzncHYxqdDRBwH-f4kR3lz044HM,1878
|
348
349
|
moovio_sdk/models/components/requirementerror.py,sha256=fQivhquOapuLAVl2TYLsoEseHhczvRUo9ekYuF6B-_o,815
|
349
350
|
moovio_sdk/models/components/requirementerrorcode.py,sha256=MIYpCWakr0KoPfXSqNw_1KXMfF4qwWr0HVkEo7z4GJ0,1059
|
350
|
-
moovio_sdk/models/components/requirementid.py,sha256=
|
351
|
+
moovio_sdk/models/components/requirementid.py,sha256=27o_zPAk091-UeimiyglFRrur1wvS9b6fpCwdM7Inos,11299
|
351
352
|
moovio_sdk/models/components/returnpolicytype.py,sha256=qS0F0eGE52oHxiv6jL_QSJnW2NqJxq0tZl8wvBB6AFo,284
|
352
353
|
moovio_sdk/models/components/reversal.py,sha256=1mQ3-UE4VjGsC1AvqMlMKb1dBk6EMFDyr20gHWbFx44,811
|
353
354
|
moovio_sdk/models/components/reversedwithcancellation.py,sha256=3TH77_JiFxnFt6JGyLw99Fl5LYd95qhMrLb-WpN1WAo,419
|
@@ -436,13 +437,15 @@ moovio_sdk/models/components/volumebycustomertype.py,sha256=xA-0-3DWRxmHLZ-J0Zjy
|
|
436
437
|
moovio_sdk/models/components/volumebycustomertypeerror.py,sha256=zted3iTK3pbCdIRgaBV-3-wW0KUGDRhTRkyiJnHKJbw,739
|
437
438
|
moovio_sdk/models/components/volumesharebycustomertype.py,sha256=Tea6z-3mfBfywfS6wRGg343Ba9igaM6wvLYp39tU8h0,519
|
438
439
|
moovio_sdk/models/components/volumesharebycustomertypeerror.py,sha256=EjKMdHyRUKEUdfh2N0zunYcD59SXPWWYDrLLCW2mCVo,529
|
439
|
-
moovio_sdk/models/components/wallet.py,sha256=
|
440
|
+
moovio_sdk/models/components/wallet.py,sha256=98rTUQbMab6hCEs3mln_KqUOkJNmmlZU4EftdsaY0zY,3360
|
440
441
|
moovio_sdk/models/components/walletavailablebalance.py,sha256=belUWnDIVDHGwkuuv8sh-ZIjkxqZwRz8BU7CzcjUJ1o,854
|
442
|
+
moovio_sdk/models/components/walletstatus.py,sha256=MByg0BSXWicjq8jPjaXFATTIO21ZJQxwgPlkaNMsJCQ,430
|
441
443
|
moovio_sdk/models/components/wallettransaction.py,sha256=oVx_Vtmw0UmSGk_Mdw_DeFpygp7Vva0iP9jyml0FnzY,6940
|
442
444
|
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=Mh549qh9Sbr1QPOHZdyJAjhbdlcTP6uZS3ygHdALx5E,404
|
443
445
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
444
446
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=iiEIaeNpnba8i4DyNTJkwC_3FPvJA-PBFK5FzAhAEEE,1090
|
445
|
-
moovio_sdk/models/components/
|
447
|
+
moovio_sdk/models/components/wallettype.py,sha256=QYXlvfOuXGViM9HGVQCPGFHNzqTEMOpaqhZgGoarS4Y,724
|
448
|
+
moovio_sdk/models/components/webhookdata.py,sha256=qcwV0gNICVB15BPFK2NptlshZePUnXzrSm_Zu4T_KlU,7574
|
446
449
|
moovio_sdk/models/components/webhookdataaccountcreated.py,sha256=Z4UsBDxO-oO_Vm376helYqS4CIL1BKK_OJgHoLREC_Y,559
|
447
450
|
moovio_sdk/models/components/webhookdataaccountdisconnected.py,sha256=Kpz5CiU0uKrvDueK1DsElmuJ6oZwaplBW2DFSy27P7M,569
|
448
451
|
moovio_sdk/models/components/webhookdataaccountupdated.py,sha256=J4AbxWwLf6Zdn_qWJiXovJFIC5sCFdA8Y5EaxNb1mqU,559
|
@@ -475,13 +478,15 @@ moovio_sdk/models/components/webhookdataticketupdated.py,sha256=fNmC-4Hi58rRfiai
|
|
475
478
|
moovio_sdk/models/components/webhookdatatransfercreated.py,sha256=8Xzbhz2dg9HNCnGgbZcwsLzpZdVqvOOZRGXWQuxaQeM,907
|
476
479
|
moovio_sdk/models/components/webhookdatatransferstatus.py,sha256=2VZm-PIQ-IXqxqPIy628vfDx6xo3ejt7D2yYPPJpSBw,1154
|
477
480
|
moovio_sdk/models/components/webhookdatatransferupdated.py,sha256=6Lh-EpFvbn6M4A7X8duTeHgpIR8inq6G97GQ_eBqb3Q,1589
|
481
|
+
moovio_sdk/models/components/webhookdatawalletcreated.py,sha256=WXZURaSFvYOu1i6wQtZXo_E3UJEfBmxMc4LUT1NhBKw,483
|
478
482
|
moovio_sdk/models/components/webhookdatawallettransactionupdated.py,sha256=Zi8xDtCbJ1-prGIwvV57rmAhW5GlWLRHSXNhLiXW6gg,1083
|
483
|
+
moovio_sdk/models/components/webhookdatawalletupdated.py,sha256=OwdNCO1g3abvrmQpphlo86PKRWKKgkTZU1tjygPuUJE,1017
|
479
484
|
moovio_sdk/models/components/webhookevent.py,sha256=MNjoiBZwOPr0oDzpK7elJRa1w_RJbc40L2JD4yZSyWo,1413
|
480
|
-
moovio_sdk/models/components/webhookeventtype.py,sha256=
|
485
|
+
moovio_sdk/models/components/webhookeventtype.py,sha256=wMfNbNQevIIyEhP5bThIYF6vhTP55VCg2aOy9gIO-0o,1807
|
481
486
|
moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py,sha256=UW1IFVidGtC0bOT5sV0m0uiJwblvbP6KopkTqkj5SYg,688
|
482
487
|
moovio_sdk/models/components/wireinstitution.py,sha256=HAouMCzuM9UtkAW9hgtRW8cMq8vBgYuxj_NFQxsiCbY,810
|
483
488
|
moovio_sdk/models/components/wireservices.py,sha256=5LbfeTazeWxrCRk2HBCtyByTZSeg9g4fdhK81lmYICo,1207
|
484
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
489
|
+
moovio_sdk/models/errors/__init__.py,sha256=yT20Ewd5hNKEUg32sJXrQkxikOb0_Ke_23nGKYRZkAk,13026
|
485
490
|
moovio_sdk/models/errors/accountterminalapplicationerror.py,sha256=4_L-gUxQyac3xyO5BbPZvx9a3IH5mzE5AsQVRSOXCr4,855
|
486
491
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=yqlrGUWliCerAz6FAcqdWau4GoW4CzLrg3fjxqeBky0,722
|
487
492
|
moovio_sdk/models/errors/apierror.py,sha256=RjnwNB8JXX70lx2_77NFneGKOc_N9T3tfoUqW4hJgC0,1225
|
@@ -494,6 +499,7 @@ moovio_sdk/models/errors/createaccounterror.py,sha256=n149m3KyhABnJ7uzRuYoNRW9FZ
|
|
494
499
|
moovio_sdk/models/errors/createpaymentlinkerror.py,sha256=K-4ghMgBPq-oVVEsqufRmUU6OJz8gCaBlFEKZLSDseE,1712
|
495
500
|
moovio_sdk/models/errors/createsweepconfigerror.py,sha256=gJz4xRomUPiM_2GH5CUigvFCGXj65mnVrijWU3EBh9A,1278
|
496
501
|
moovio_sdk/models/errors/createticketerror.py,sha256=MOzGjh_C7X0cJuVAN2BXSskJSs3Fi8HFzn8WfXl2dVQ,907
|
502
|
+
moovio_sdk/models/errors/createwalleterror.py,sha256=EdFE6WN5AFyBv-P_RqOPe3AtaBBGtk_70tIL2dzDLd4,727
|
497
503
|
moovio_sdk/models/errors/feeplanagreementerror.py,sha256=VozIc-k7snxCLsy0PaHjL7R7ZnwAPB8ms62Hf7_ysC8,770
|
498
504
|
moovio_sdk/models/errors/fileuploadvalidationerror.py,sha256=gbf14oneJm8Y_YMdV2o9Tm3gMlyvIE4B9u9GV6rlUW8,1094
|
499
505
|
moovio_sdk/models/errors/filevalidationerror.py,sha256=MD4DouBXpix8R2W-5fBj5MSpn1annnniOE7INqwqCUw,955
|
@@ -506,6 +512,7 @@ moovio_sdk/models/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6s
|
|
506
512
|
moovio_sdk/models/errors/onboardinginviteerror.py,sha256=rDSbX286KtWF9Jr-XkH4mUDbO1YYaAbD-ZtqDzZjPs0,1110
|
507
513
|
moovio_sdk/models/errors/patchaccounterror.py,sha256=D1jxuFVKxURSpKcscQ53wh9H26r_J5JQIw9QWVebFvU,1614
|
508
514
|
moovio_sdk/models/errors/patchsweepconfigerror.py,sha256=iNfqe_jCDWfssQow0fwyTNFzIQy0Gq5Z3PIA6Bthip0,1192
|
515
|
+
moovio_sdk/models/errors/patchwalleterror.py,sha256=tjmH_Zccuh8YkSCmSfXLQ93RYfeHD3WD-7oLoHm0PlA,757
|
509
516
|
moovio_sdk/models/errors/refundvalidationerror.py,sha256=MpjsR070yqKDevbFucNEPybKgjHWBJuKugU4rLB-30I,808
|
510
517
|
moovio_sdk/models/errors/representativevalidationerror.py,sha256=_xrqZTCqB_paSwLyxtNttOt2eNKHyxEmuawOHCFbaOk,2557
|
511
518
|
moovio_sdk/models/errors/requestcarderror.py,sha256=v8fPUH6lEjovfkJE2ZeSsxzKMQJVXxs1LB9ddMZbI5k,1483
|
@@ -525,7 +532,7 @@ moovio_sdk/models/errors/updateunderwritingerror.py,sha256=9Yvb0mE-TgADUbKPcmVGz
|
|
525
532
|
moovio_sdk/models/errors/upsertunderwritingerror.py,sha256=ppcMo_-TTESeF5rPK1Kq_EGag1OSqpCVj7tFky2HCx0,3143
|
526
533
|
moovio_sdk/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
|
527
534
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
528
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
535
|
+
moovio_sdk/models/operations/__init__.py,sha256=L98xUFKYdfnHHXTgskOe_Vtn5wdUXGV6UJ0olMUVBcs,125476
|
529
536
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
530
537
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
531
538
|
moovio_sdk/models/operations/cancelschedule.py,sha256=7h3S-76QlIKdmdQUVHIId-Zay3tc8TVZqqg7SzaudCg,2534
|
@@ -549,6 +556,7 @@ moovio_sdk/models/operations/createterminalapplicationversion.py,sha256=GxgsRoTs
|
|
549
556
|
moovio_sdk/models/operations/createticket.py,sha256=GNg1dXQ3T4ywglSRkVN37nJ1ouiNU06tEousvPyZaJA,2663
|
550
557
|
moovio_sdk/models/operations/createtransfer.py,sha256=UeGpxBVsHy_sES-xLfdAqNFXExQxYgbPIQOOlAItzcU,4706
|
551
558
|
moovio_sdk/models/operations/createtransferoptions.py,sha256=4bPqmO892YebolkzL3NeLQKylZu0neN5pUoEWdBpTm8,2945
|
559
|
+
moovio_sdk/models/operations/createwallet.py,sha256=iwESZbEJoVQ8jDOPvfSa3TtSbOyNFDO0UB0hn2D8R34,2771
|
552
560
|
moovio_sdk/models/operations/deletedisputeevidencefile.py,sha256=NHUuvakVuXiCwqI_gDDgjhFAAfKypztOzasr0S78KQE,2648
|
553
561
|
moovio_sdk/models/operations/deleterepresentative.py,sha256=H3bKQTMMsB9_wCqxfZqwgq-NljV5W-lGWzXIHEnxxv0,2582
|
554
562
|
moovio_sdk/models/operations/deleteterminalapplication.py,sha256=4PWTRg4RR--XoZK-ZZgjNYlMbefs-Diioc8Om1bbHO8,2307
|
@@ -639,7 +647,7 @@ moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qv
|
|
639
647
|
moovio_sdk/models/operations/listticketmessages.py,sha256=YnOys5jBUweItLMkdGbfE-DL3KVt5Z-28LjV86Bdq7U,2619
|
640
648
|
moovio_sdk/models/operations/listtickets.py,sha256=T1408Rx5lmpdHT16Pxv1BblaRm06soE6ppIrdYVgPfU,3685
|
641
649
|
moovio_sdk/models/operations/listtransfers.py,sha256=ERB6HuonDVt-tYdwgU4fYHhTCHp79DvcgKjCp6F4Z_Y,6786
|
642
|
-
moovio_sdk/models/operations/listwallets.py,sha256=
|
650
|
+
moovio_sdk/models/operations/listwallets.py,sha256=BkaJT_-xY0bdkDQWJxhInrr2YEddFUyHy_SpTZBvTaM,3574
|
643
651
|
moovio_sdk/models/operations/listwallettransactions.py,sha256=Q6fdn8q2IkY9tM31mtWkCrVvpKSUt4spSFuJ97UVNTc,7848
|
644
652
|
moovio_sdk/models/operations/ping.py,sha256=IDLagRGZUKJb7qEfL4llEcSl0jTC_zFFNfJFmJzV8Tg,1955
|
645
653
|
moovio_sdk/models/operations/registerapplepaymerchantdomains.py,sha256=XeL63vMEAzwCT43UCg6OacgGeSQlJcCWpis6yxHYK-0,3159
|
@@ -664,6 +672,7 @@ moovio_sdk/models/operations/updateschedule.py,sha256=OsnpQKWyXbwf9GMTXNQKMw6keD
|
|
664
672
|
moovio_sdk/models/operations/updatesweepconfig.py,sha256=QGWPSl-B9LZKErikvREMUIrsJUfpU5hfdSlIKW567Fk,2959
|
665
673
|
moovio_sdk/models/operations/updateticket.py,sha256=u9wYzwGbnMJnO5eS68qnAERPS__HBqAaE8xNsCQaLCM,2848
|
666
674
|
moovio_sdk/models/operations/updatetransfer.py,sha256=mLQd8ZoxcIyJknpemdEn-PMMsfA4cBSku2qzlsY7eMc,2966
|
675
|
+
moovio_sdk/models/operations/updatewallet.py,sha256=zRI6SKVASY7sb_h2UpCmKJXEMYMjA6xXQ9U2R2rVcTc,3024
|
667
676
|
moovio_sdk/models/operations/uploaddisputeevidencefile.py,sha256=2-3jyt67kZLa6CyNCMla6zLXz9KEOAXN40ZKZQzZ8MY,3170
|
668
677
|
moovio_sdk/models/operations/uploaddisputeevidencetext.py,sha256=5hC4mQy_YPrUtWL1i6ZJ6huHiTk_nKXoSXAWw0tInRk,3063
|
669
678
|
moovio_sdk/models/operations/uploadfile.py,sha256=BqwXLmdV7Gg3jzI0QqdRCQZes5B9mtmpFXKTxfw-VGA,2818
|
@@ -704,7 +713,7 @@ moovio_sdk/utils/unmarshal_json_response.py,sha256=Kr8UvsNaQp6pymeypUuOUCOcSsMlL
|
|
704
713
|
moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
705
714
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
706
715
|
moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
|
707
|
-
moovio_sdk/wallets.py,sha256=
|
708
|
-
moovio_sdk-0.14.
|
709
|
-
moovio_sdk-0.14.
|
710
|
-
moovio_sdk-0.14.
|
716
|
+
moovio_sdk/wallets.py,sha256=HcBpH4qpsaiatN81e4-pPBeJ6gndorUsiPS2XqNvxcY,42528
|
717
|
+
moovio_sdk-0.14.2.dist-info/METADATA,sha256=lD92VuG879eyuHOcjF1QChwNe7DeJqr3URsGw4k5q1o,112644
|
718
|
+
moovio_sdk-0.14.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
719
|
+
moovio_sdk-0.14.2.dist-info/RECORD,,
|
@@ -1,24 +0,0 @@
|
|
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 import Optional
|
6
|
-
from typing_extensions import NotRequired, TypedDict
|
7
|
-
|
8
|
-
|
9
|
-
class PayoutRecipientUpdateTypedDict(TypedDict):
|
10
|
-
r"""Specify the intended recipient of the payout.
|
11
|
-
|
12
|
-
This information will be used to authenticate the end user when they follow the payment link.
|
13
|
-
"""
|
14
|
-
|
15
|
-
email: NotRequired[str]
|
16
|
-
|
17
|
-
|
18
|
-
class PayoutRecipientUpdate(BaseModel):
|
19
|
-
r"""Specify the intended recipient of the payout.
|
20
|
-
|
21
|
-
This information will be used to authenticate the end user when they follow the payment link.
|
22
|
-
"""
|
23
|
-
|
24
|
-
email: Optional[str] = None
|
File without changes
|