moovio_sdk 0.14.7__py3-none-any.whl → 0.15.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of moovio_sdk might be problematic. Click here for more details.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/models/components/__init__.py +89 -0
- moovio_sdk/models/components/achfees.py +59 -0
- moovio_sdk/models/components/billingcountandamount.py +25 -0
- moovio_sdk/models/components/billinginterchangeprogramfee.py +57 -0
- moovio_sdk/models/components/billingsummary.py +102 -0
- moovio_sdk/models/components/billingsummarydetails.py +36 -0
- moovio_sdk/models/components/billingsummaryinterchange.py +36 -0
- moovio_sdk/models/components/cardacquiringfees.py +36 -0
- moovio_sdk/models/components/cardbrandfees.py +87 -0
- moovio_sdk/models/components/instantpaymentfees.py +71 -0
- moovio_sdk/models/components/othercardfees.py +47 -0
- moovio_sdk/models/components/platformfees.py +31 -0
- moovio_sdk/models/components/statement.py +110 -0
- moovio_sdk/models/components/webhookbillingstatementcreated.py +14 -0
- moovio_sdk/models/components/webhookdata.py +32 -26
- moovio_sdk/models/components/webhookeventtype.py +1 -0
- moovio_sdk/models/operations/__init__.py +46 -0
- moovio_sdk/models/operations/getstatement.py +83 -0
- moovio_sdk/models/operations/liststatements.py +100 -0
- moovio_sdk/sdk.py +3 -0
- moovio_sdk/statements.py +471 -0
- {moovio_sdk-0.14.7.dist-info → moovio_sdk-0.15.1.dist-info}/METADATA +53 -40
- {moovio_sdk-0.14.7.dist-info → moovio_sdk-0.15.1.dist-info}/RECORD +25 -9
- {moovio_sdk-0.14.7.dist-info → moovio_sdk-0.15.1.dist-info}/WHEEL +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moovio_sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.1
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -1016,6 +1016,19 @@ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
|
|
1016
1016
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1017
1017
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
1018
1018
|
|
|
1019
|
+
### [statements](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/statements/README.md)
|
|
1020
|
+
|
|
1021
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/statements/README.md#list) - Retrieve all statements associated with an account.
|
|
1022
|
+
|
|
1023
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1024
|
+
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
1025
|
+
* [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/statements/README.md#get) - Retrieve a statement by its ID.
|
|
1026
|
+
|
|
1027
|
+
Use the `Accept` header to specify the format of the response. Supported formats are `application/json` and `application/pdf`.
|
|
1028
|
+
|
|
1029
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1030
|
+
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
1031
|
+
|
|
1019
1032
|
### [support](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md)
|
|
1020
1033
|
|
|
1021
1034
|
* [create_ticket](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#create_ticket) - Create a support ticket for a Moov account.
|
|
@@ -1488,45 +1501,45 @@ with Moov(
|
|
|
1488
1501
|
|
|
1489
1502
|
|
|
1490
1503
|
**Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
|
|
1491
|
-
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to
|
|
1492
|
-
* [`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
|
|
1493
|
-
* [`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
|
|
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 2 of
|
|
1495
|
-
* [`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
|
|
1496
|
-
* [`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
|
|
1497
|
-
* [`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
|
|
1498
|
-
* [`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
|
|
1499
|
-
* [`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
|
|
1500
|
-
* [`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
|
|
1501
|
-
* [`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
|
|
1502
|
-
* [`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
|
|
1503
|
-
* [`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
|
|
1504
|
-
* [`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
|
|
1505
|
-
* [`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
|
|
1506
|
-
* [`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
|
|
1507
|
-
* [`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
|
|
1508
|
-
* [`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
|
|
1509
|
-
* [`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
|
|
1510
|
-
* [`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
|
|
1511
|
-
* [`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
|
|
1512
|
-
* [`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
|
|
1513
|
-
* [`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
|
|
1514
|
-
* [`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
|
|
1515
|
-
* [`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
|
|
1516
|
-
* [`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
|
|
1517
|
-
* [`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
|
|
1518
|
-
* [`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
|
|
1519
|
-
* [`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
|
|
1520
|
-
* [`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
|
|
1521
|
-
* [`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
|
|
1522
|
-
* [`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
|
|
1523
|
-
* [`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
|
|
1524
|
-
* [`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
|
|
1525
|
-
* [`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
|
|
1526
|
-
* [`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
|
|
1527
|
-
* [`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
|
|
1528
|
-
* [`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
|
|
1529
|
-
* [`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
|
|
1504
|
+
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 65 of 147 methods.*
|
|
1505
|
+
* [`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 147 methods.*
|
|
1506
|
+
* [`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 147 methods.*
|
|
1507
|
+
* [`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 147 methods.*
|
|
1508
|
+
* [`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 147 methods.*
|
|
1509
|
+
* [`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 147 methods.*
|
|
1510
|
+
* [`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 147 methods.*
|
|
1511
|
+
* [`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 147 methods.*
|
|
1512
|
+
* [`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 147 methods.*
|
|
1513
|
+
* [`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 147 methods.*
|
|
1514
|
+
* [`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 147 methods.*
|
|
1515
|
+
* [`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 147 methods.*
|
|
1516
|
+
* [`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 147 methods.*
|
|
1517
|
+
* [`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 147 methods.*
|
|
1518
|
+
* [`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 147 methods.*
|
|
1519
|
+
* [`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 147 methods.*
|
|
1520
|
+
* [`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 147 methods.*
|
|
1521
|
+
* [`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 147 methods.*
|
|
1522
|
+
* [`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 147 methods.*
|
|
1523
|
+
* [`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 147 methods.*
|
|
1524
|
+
* [`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 147 methods.*
|
|
1525
|
+
* [`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 147 methods.*
|
|
1526
|
+
* [`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 147 methods.*
|
|
1527
|
+
* [`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 147 methods.*
|
|
1528
|
+
* [`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 147 methods.*
|
|
1529
|
+
* [`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 147 methods.*
|
|
1530
|
+
* [`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 147 methods.*
|
|
1531
|
+
* [`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 147 methods.*
|
|
1532
|
+
* [`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 147 methods.*
|
|
1533
|
+
* [`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 147 methods.*
|
|
1534
|
+
* [`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 147 methods.*
|
|
1535
|
+
* [`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 147 methods.*
|
|
1536
|
+
* [`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 147 methods.*
|
|
1537
|
+
* [`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 147 methods.*
|
|
1538
|
+
* [`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 147 methods.*
|
|
1539
|
+
* [`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 147 methods.*
|
|
1540
|
+
* [`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 147 methods.*
|
|
1541
|
+
* [`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 147 methods.*
|
|
1542
|
+
* [`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 147 methods.*
|
|
1530
1543
|
* [`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.
|
|
1531
1544
|
|
|
1532
1545
|
</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=0igUIXqD42TK-vVKlaYjd5EoYnqghaoamm7C1fmIZyY,466
|
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=ldTg5uAukIAwfziQFgmuq6vlAsUPS5DqMkgdCx9bwn8,38522
|
|
8
8
|
moovio_sdk/accounts.py,sha256=XHDyYql7Tc27K28zv0UI0eYU0LkRu8kmSPXBYI8Iyx0,100626
|
|
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=2sdxrDZqV8m_cjuP8IVPX3tkht_sUt12PYl1gGBp7so,126233
|
|
31
31
|
moovio_sdk/models/components/account.py,sha256=gIzVHHbfwM-YZns1m9b2z6es5mX-LtCOd7C0N-oPBBA,4189
|
|
32
32
|
moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
|
|
33
33
|
moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
|
|
@@ -40,6 +40,7 @@ moovio_sdk/models/components/achcreditstandardpaymentmethod.py,sha256=WFJGhW0XDs
|
|
|
40
40
|
moovio_sdk/models/components/achdebitcollectpaymentmethod.py,sha256=tloygdPdlRMokw5d4RC5qUg-FZ0KP7c-U_6ugKW_C8s,1255
|
|
41
41
|
moovio_sdk/models/components/achdebitfundpaymentmethod.py,sha256=i0j7Q6vN4ur98-gArXKdDom9o5wX9Lj0aA9mBku2rjw,1234
|
|
42
42
|
moovio_sdk/models/components/achexception.py,sha256=ZG9ibMCFO3MlghW1cbOnCDXaToQP8UEFyJ_LhySwfCw,497
|
|
43
|
+
moovio_sdk/models/components/achfees.py,sha256=Y0N2ITqsFcA6UCrIuOJbFWi7ohlG7nvPIaWVOiU47RI,1951
|
|
43
44
|
moovio_sdk/models/components/achinstitution.py,sha256=CxA2fHhgCZddGsFF6foT1gs6EIRVGZIhhXumZXwmIbc,811
|
|
44
45
|
moovio_sdk/models/components/achlocation.py,sha256=NrxJn_ylB0DYhD1eAq1aaS5yQ-acLYFXacGjjBgvr4Q,590
|
|
45
46
|
moovio_sdk/models/components/achparticipant.py,sha256=rREThqWkzw5Iz72--0IZFg-qZbNBDrcovTonH2VAIso,2609
|
|
@@ -85,6 +86,11 @@ moovio_sdk/models/components/bankaccountverificationstatus.py,sha256=3ffD3XLu-Si
|
|
|
85
86
|
moovio_sdk/models/components/bankaccountwaitfor.py,sha256=tyveCk-Pd_-xzyEnNxkMkfnt4t2JUxLQ1ac2AuzzobU,243
|
|
86
87
|
moovio_sdk/models/components/basicpaymentmethod.py,sha256=VLZFLGYMEF7ec_R291vifFIpRwEGjGu3lsbq0xvrtoM,855
|
|
87
88
|
moovio_sdk/models/components/billablefee.py,sha256=TACsdFnvix9NRtvmgaKSmHLqO16QLZwJYj23sPd20-Y,2108
|
|
89
|
+
moovio_sdk/models/components/billingcountandamount.py,sha256=7h9z8aLETUWNPyB3UgLBBht8WrNIJ_SZUI4wrNsKYcg,687
|
|
90
|
+
moovio_sdk/models/components/billinginterchangeprogramfee.py,sha256=UBOoc5kpRZmjFw-qWfinwI-QwL6R-Ys5Da3X8O62SNc,2033
|
|
91
|
+
moovio_sdk/models/components/billingsummary.py,sha256=NCNPrHcIdb-GbUy3wt6ENJOModpsmyIeRiv_-jjUgDo,3661
|
|
92
|
+
moovio_sdk/models/components/billingsummarydetails.py,sha256=UqJf-Wc8qASEid3glaAKrG3tz_W0J4QldaEqW52h5ug,1256
|
|
93
|
+
moovio_sdk/models/components/billingsummaryinterchange.py,sha256=yZ1Sa3ClnC05h6NTqiT9wIzzWbviWnji9R3KwcU9Qm4,1217
|
|
88
94
|
moovio_sdk/models/components/birthdate.py,sha256=w87vqvnlARQG6TnDG5WUPsAz-1H2l94wJ2UedEwNgOI,342
|
|
89
95
|
moovio_sdk/models/components/birthdateerror.py,sha256=zDbDYIxZOT58FKM1TBphrv0w0bNw31bsEZL3vgEiK_A,483
|
|
90
96
|
moovio_sdk/models/components/birthdateupdate.py,sha256=FD17dYxt3WpWaMv4F0fSw2sJM9j0RZFGRxESnvEmKw0,485
|
|
@@ -108,10 +114,12 @@ moovio_sdk/models/components/cardacceptancemethods.py,sha256=XtMXwX1jRHVfY-Mgshu
|
|
|
108
114
|
moovio_sdk/models/components/cardacceptancemethodserror.py,sha256=b1Rg6UE5JK_e5vVISU0qmaR0KJ0AAo8Q3UFpeHoCC8c,840
|
|
109
115
|
moovio_sdk/models/components/cardaccountupdater.py,sha256=lJrXTINCsgvu6O5UXmeaBQv50Etld4MO4VYQWis95pk,935
|
|
110
116
|
moovio_sdk/models/components/cardacquiringdispute.py,sha256=7AHsB2mY6L15Sf-tfOChErFmc9gmhIry4vFATU_IYxo,688
|
|
117
|
+
moovio_sdk/models/components/cardacquiringfees.py,sha256=XEYD-nolrycdAY_JWjnYdqCaguYhWETeMx0X1a-4WPs,1285
|
|
111
118
|
moovio_sdk/models/components/cardacquiringmodel.py,sha256=-Falp0aLzvhEZbO1uqSzhj5GnRaor2LpYsxqQSfEIiw,281
|
|
112
119
|
moovio_sdk/models/components/cardacquiringrefund.py,sha256=gRKLSAyjIg1SnZ-9iKrDy33LzYtuQif_VnzyTDrno_s,1236
|
|
113
120
|
moovio_sdk/models/components/cardaddress.py,sha256=E1iAiN7WmkB604xZ_uItPTAdyUm00RQ5d6jJhnbiLI8,944
|
|
114
121
|
moovio_sdk/models/components/cardbrand.py,sha256=Y8FSNz-WyayV4MZnPyxvm_SUBVfXBHUUDMBtcjRKi8s,328
|
|
122
|
+
moovio_sdk/models/components/cardbrandfees.py,sha256=Yp7EsP3uDmTCR0Bo2S6xEsJtIbdpdH_kgWs3G7ZowJ0,3562
|
|
115
123
|
moovio_sdk/models/components/cardexpiration.py,sha256=PnFeOg_68Eh5OajkcdxnWtGvkGt8zLVm0piUBiw2Ocs,433
|
|
116
124
|
moovio_sdk/models/components/cardexpirationerror.py,sha256=XflYXAK6TN24UIDAfk03IBV1-OcbwzjU_G1MpiFJGyE,436
|
|
117
125
|
moovio_sdk/models/components/cardissuingnetwork.py,sha256=J6IQOm76UgFAf3PK3XtJ3JAyfPWmXgSKTwZqw3zKyk8,309
|
|
@@ -241,6 +249,7 @@ moovio_sdk/models/components/individualnameupdate.py,sha256=1rgPVODNASPCbVtWe1Qu
|
|
|
241
249
|
moovio_sdk/models/components/individualprofile.py,sha256=9XYieNlD3tDvoAgR1yU5VvtSWyKXcIIWUqZcULwpqH0,1561
|
|
242
250
|
moovio_sdk/models/components/industrycodes.py,sha256=dxRs-_R5VFy1SdRvihjk2AOcmVaylbViJvECmzJ4yRc,479
|
|
243
251
|
moovio_sdk/models/components/industrytaxonomy.py,sha256=NUOOo4LqN-yTUtGz6PVmFjhnSYrBFGFZfTJmbEjw6Es,1258
|
|
252
|
+
moovio_sdk/models/components/instantpaymentfees.py,sha256=tiqFhR975kr4qA0UKRElJBq4cHiEbHNFcZtXaRJAloU,2673
|
|
244
253
|
moovio_sdk/models/components/institutionssearchresponse.py,sha256=4BY3npqAjDiPnUBOtxUktgRYUKTsRLKwTlI4TXCgbV0,1770
|
|
245
254
|
moovio_sdk/models/components/issuedcard.py,sha256=J6LJANU1CqtziTW_kw38R483nJTpICmNBAKq2emfc6c,3845
|
|
246
255
|
moovio_sdk/models/components/issuedcardauthorization.py,sha256=CBs07Xy6Zj6SycF0dUFCA7yiqiH_pW9GzRJX5vkKQN4,2252
|
|
@@ -293,6 +302,7 @@ moovio_sdk/models/components/occurrencestatus.py,sha256=7dCN7i_c5_eL-gXpkT-ZL6dJ
|
|
|
293
302
|
moovio_sdk/models/components/onboardinginvite.py,sha256=0JnZR0c6I-lmGo1OvSJakBGJC9W7ybDdCR_nglwzwlE,3790
|
|
294
303
|
moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtIPX3jrYVfJQrHKEQZ3YFPT21aAM,2578
|
|
295
304
|
moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
|
|
305
|
+
moovio_sdk/models/components/othercardfees.py,sha256=2uKj8XtiDaJURBvNl6y2NXULwC_KRQA4x7fjJpeRE1s,1554
|
|
296
306
|
moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
|
|
297
307
|
moovio_sdk/models/components/partnerpricing.py,sha256=XH8XCRTML7AyygqRtLqF-QedIsgB8vKBSLANmR2iEE8,2531
|
|
298
308
|
moovio_sdk/models/components/partnerpricingagreement.py,sha256=bh3DknfJcKHKyP3cCvNNmOSbxHKgpiVRhEhcenNPcLY,2900
|
|
@@ -328,6 +338,7 @@ moovio_sdk/models/components/plaidintegration.py,sha256=lBzXOkl_Gt_5xWkhBYez27Zi
|
|
|
328
338
|
moovio_sdk/models/components/plaidlinkintegration.py,sha256=jreTgs7hkUvBTE2I5j1Ag-oPYXPjS177ISbxNpWOy1M,1955
|
|
329
339
|
moovio_sdk/models/components/plaidlinkpayload.py,sha256=x7TV7dCNUoWoRE6oHiawYFuOIaiMzHfdDK9v1TI_1q0,2416
|
|
330
340
|
moovio_sdk/models/components/plaidpayload.py,sha256=bF7vRUa3OdC6k4QZbkjXPYxL70EA0QgugQfHTFG-7eQ,1537
|
|
341
|
+
moovio_sdk/models/components/platformfees.py,sha256=8b-9aTsIdDUeTUjuB8jzLX2ORLfr3EGLmBv7UFyoGP4,998
|
|
331
342
|
moovio_sdk/models/components/primaryregulator.py,sha256=nx21YAn8kxmXRApHK8rJD_YKzi2ZVm8qqFqgCrrBkSU,381
|
|
332
343
|
moovio_sdk/models/components/profile.py,sha256=-EXX_7LYQ2y1FgWs9Lf45zCYjOz6_J9sA_6zySeBeWk,1292
|
|
333
344
|
moovio_sdk/models/components/pullfromcardpaymentmethod.py,sha256=LVhaRwsPrtQsBqjASPIzzGng3C6TDfdjq0FbjYV2ing,1092
|
|
@@ -378,6 +389,7 @@ moovio_sdk/models/components/sendfundsrtperror.py,sha256=CYWrYuvvLaq9EBck30dEsio
|
|
|
378
389
|
moovio_sdk/models/components/sentreceipt.py,sha256=6XQTYe_ZrIkmLWek13CzYQhQk_lUi2-36TUftMx8QuA,887
|
|
379
390
|
moovio_sdk/models/components/settings.py,sha256=C-Rx1wGKnnx6uEaS71pKFlKwxnacTw7Mc1jTnkoMyfc,1165
|
|
380
391
|
moovio_sdk/models/components/sourcedestinationoptions.py,sha256=ZfXiQ4t7JOAveVtnSanLaGPmx4_qu83qUCAffuWvBao,621
|
|
392
|
+
moovio_sdk/models/components/statement.py,sha256=FRQZ0Z_A-q6Y3dEHfj7dbQnZXTxKWFnRtqYY3VreFiA,4419
|
|
381
393
|
moovio_sdk/models/components/submissionintent.py,sha256=pk4dR27Tl44ygckzFPuYUiVYLT158k6EV9vjAWyyUD0,207
|
|
382
394
|
moovio_sdk/models/components/sweep.py,sha256=ISz4TDYn2Hx5LYW784ZUGSjIskb3uZhR4N9Qk6aLsoU,3429
|
|
383
395
|
moovio_sdk/models/components/sweepconfig.py,sha256=QEFX5SRoTUd3EKqI0d6kii87nLOTsDWJQmsaika3BIU,3760
|
|
@@ -445,7 +457,8 @@ moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=LHeQsR01d8plp
|
|
|
445
457
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
|
446
458
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=QiW9XXAGmUUfu7Pnx0AQJ10BAPfyyD0m20WhqNVCWZU,1116
|
|
447
459
|
moovio_sdk/models/components/wallettype.py,sha256=QYXlvfOuXGViM9HGVQCPGFHNzqTEMOpaqhZgGoarS4Y,724
|
|
448
|
-
moovio_sdk/models/components/
|
|
460
|
+
moovio_sdk/models/components/webhookbillingstatementcreated.py,sha256=JcjqydW9LRj1ZxxGNZy6EYOD-94PG9wYuC6zaQVKimw,417
|
|
461
|
+
moovio_sdk/models/components/webhookdata.py,sha256=5GeU3S148ONxR1UnO0vrbmD9hE8owgcMYjHWdXV2eFU,7792
|
|
449
462
|
moovio_sdk/models/components/webhookdataaccountcreated.py,sha256=Z4UsBDxO-oO_Vm376helYqS4CIL1BKK_OJgHoLREC_Y,559
|
|
450
463
|
moovio_sdk/models/components/webhookdataaccountdisconnected.py,sha256=Kpz5CiU0uKrvDueK1DsElmuJ6oZwaplBW2DFSy27P7M,569
|
|
451
464
|
moovio_sdk/models/components/webhookdataaccountupdated.py,sha256=J4AbxWwLf6Zdn_qWJiXovJFIC5sCFdA8Y5EaxNb1mqU,559
|
|
@@ -482,7 +495,7 @@ moovio_sdk/models/components/webhookdatawalletcreated.py,sha256=WXZURaSFvYOu1i6w
|
|
|
482
495
|
moovio_sdk/models/components/webhookdatawallettransactionupdated.py,sha256=Zi8xDtCbJ1-prGIwvV57rmAhW5GlWLRHSXNhLiXW6gg,1083
|
|
483
496
|
moovio_sdk/models/components/webhookdatawalletupdated.py,sha256=OwdNCO1g3abvrmQpphlo86PKRWKKgkTZU1tjygPuUJE,1017
|
|
484
497
|
moovio_sdk/models/components/webhookevent.py,sha256=MNjoiBZwOPr0oDzpK7elJRa1w_RJbc40L2JD4yZSyWo,1413
|
|
485
|
-
moovio_sdk/models/components/webhookeventtype.py,sha256=
|
|
498
|
+
moovio_sdk/models/components/webhookeventtype.py,sha256=sSBrEyjz4t56BtgnvflgIjmubF1UhW0jaTiSOFIIwvE,1866
|
|
486
499
|
moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py,sha256=UW1IFVidGtC0bOT5sV0m0uiJwblvbP6KopkTqkj5SYg,688
|
|
487
500
|
moovio_sdk/models/components/wireinstitution.py,sha256=HAouMCzuM9UtkAW9hgtRW8cMq8vBgYuxj_NFQxsiCbY,810
|
|
488
501
|
moovio_sdk/models/components/wireservices.py,sha256=5LbfeTazeWxrCRk2HBCtyByTZSeg9g4fdhK81lmYICo,1207
|
|
@@ -532,7 +545,7 @@ moovio_sdk/models/errors/updateunderwritingerror.py,sha256=8M35UyziU80NTyTli-lWZ
|
|
|
532
545
|
moovio_sdk/models/errors/upsertunderwritingerror.py,sha256=bunmESq8arMpXI3fuNQf_PY4MQpIP7_181dJP7tjdD0,3250
|
|
533
546
|
moovio_sdk/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
|
|
534
547
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
|
535
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
|
548
|
+
moovio_sdk/models/operations/__init__.py,sha256=51MtZ8KGQ1AMVDHMFRtrSBqxMGZw73fX-U8OLiPHxYA,127245
|
|
536
549
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
|
537
550
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
|
538
551
|
moovio_sdk/models/operations/cancelschedule.py,sha256=7h3S-76QlIKdmdQUVHIId-Zay3tc8TVZqqg7SzaudCg,2534
|
|
@@ -597,6 +610,7 @@ moovio_sdk/models/operations/getrefund.py,sha256=aZvHuLnG00FLfg60rz9Cyowq5YZgfDJ
|
|
|
597
610
|
moovio_sdk/models/operations/getrepresentative.py,sha256=XuUWGVrCIowalB7eoAq0yHhJz1susEfBIu98NQ3Jcco,2765
|
|
598
611
|
moovio_sdk/models/operations/getscheduledoccurrence.py,sha256=Po2VhcfiSeNtmJkXamQyvs8YUL2WPowc-RjyuiVm4KU,3505
|
|
599
612
|
moovio_sdk/models/operations/getschedules.py,sha256=UVogppitQ0sVe0kvPy7b9m3gmRJpfHjbcvOkSTqyZlc,2595
|
|
613
|
+
moovio_sdk/models/operations/getstatement.py,sha256=R_MtObk9abNnVye9WMPiRbhP_cKB30jnoznOV6Z-Cbo,2887
|
|
600
614
|
moovio_sdk/models/operations/getsweep.py,sha256=-HH4rVhe6nZNL9ZlzVnESunY65QuAL4GOEGufBajbLI,2681
|
|
601
615
|
moovio_sdk/models/operations/getsweepconfig.py,sha256=j-0zuchd-A_gaNPaq4vtZWa-9DeUm7en0FQcqfpS6fU,2588
|
|
602
616
|
moovio_sdk/models/operations/getterminalapplication.py,sha256=m_DujyZZUJlPxrPnKBUrHSUPTX5EE3SOQexOqKrOkTk,2529
|
|
@@ -641,6 +655,7 @@ moovio_sdk/models/operations/listreceipts.py,sha256=Hp2fOurscJCv1ejHwtUYJ1zGS4RQ
|
|
|
641
655
|
moovio_sdk/models/operations/listrefunds.py,sha256=sVXcY-yN_NYHfeTeI9cwZR9GC3H2aUkGc9YPxcvjlIE,2708
|
|
642
656
|
moovio_sdk/models/operations/listrepresentatives.py,sha256=_8WjNSUx2wmZnR5Ggp5RHgPPLg9AEwHFKIOs7McR4BQ,2506
|
|
643
657
|
moovio_sdk/models/operations/listschedules.py,sha256=EUMVtQGVBLGU8xx56WnfmzVRNzN9GSoxZVwm5bD_IzQ,3077
|
|
658
|
+
moovio_sdk/models/operations/liststatements.py,sha256=Z-7261gAqvGRCkbGa2ntFDP-6-gfkakIJUFvmzHSUIA,3831
|
|
644
659
|
moovio_sdk/models/operations/listsweepconfigs.py,sha256=FyXZ5L01-nF52nj4WCqKEwGEERoZtTzW9KJxnIwb0wA,2410
|
|
645
660
|
moovio_sdk/models/operations/listsweeps.py,sha256=RcjWsbeutBY68KA1J3NevCjcAgrZOnl60xQA6RWgSdo,3659
|
|
646
661
|
moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qvn6drroaW5Hfyb7lF2ELdN4Ue-88,2327
|
|
@@ -686,8 +701,9 @@ moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
|
686
701
|
moovio_sdk/receipts.py,sha256=ZyEDLX-fnxLDf3QmKA6nfKtHEUxOaOwDLDYr6PAuNYo,19035
|
|
687
702
|
moovio_sdk/representatives.py,sha256=3XG8tnLGs5pB8gDzMNgGCxiqcHp29vFSc12G7S-K3A8,60219
|
|
688
703
|
moovio_sdk/scheduling.py,sha256=NcTSaPBa43YTmxS02qYy-o8ItA61gMLEk1HAV9MV2nc,60890
|
|
689
|
-
moovio_sdk/sdk.py,sha256=
|
|
704
|
+
moovio_sdk/sdk.py,sha256=IFvSKx2COVGbl_PX6_ZZhg_b6SDJP3bKOHS9KEL1Wlc,12650
|
|
690
705
|
moovio_sdk/sdkconfiguration.py,sha256=vvZHznUDI2m3Z8ddTKDFUXkQu4mNBGX8Q9Zx7XpR3WY,1665
|
|
706
|
+
moovio_sdk/statements.py,sha256=KWU3fFswizXN79gRJX-TWsk1F2V0Yp1DaeiWfozU6KU,21145
|
|
691
707
|
moovio_sdk/support.py,sha256=fIs60WlHq2au9n4BBPLq1J3Vp8cdulisn-_5Z3r9vg0,50519
|
|
692
708
|
moovio_sdk/sweeps.py,sha256=bp71dtVpazfJo3BmB7SKru5e9XLWgFKZEVJ4R-fw6WQ,61528
|
|
693
709
|
moovio_sdk/terminal_applications.py,sha256=1mn5glbRSlm5d3nVm-7CCejqPXbIFT-JMb5jcpXSFss,50977
|
|
@@ -714,6 +730,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
|
714
730
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
715
731
|
moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
|
|
716
732
|
moovio_sdk/wallets.py,sha256=HcBpH4qpsaiatN81e4-pPBeJ6gndorUsiPS2XqNvxcY,42528
|
|
717
|
-
moovio_sdk-0.
|
|
718
|
-
moovio_sdk-0.
|
|
719
|
-
moovio_sdk-0.
|
|
733
|
+
moovio_sdk-0.15.1.dist-info/METADATA,sha256=h-p6k1p1eQOJp4WsJKVclifPVPa3A8jOV6gYad5-t4A,113648
|
|
734
|
+
moovio_sdk-0.15.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
735
|
+
moovio_sdk-0.15.1.dist-info/RECORD,,
|