moovio_sdk 0.3.8__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/__init__.py +17 -0
- moovio_sdk/_hooks/__init__.py +5 -0
- moovio_sdk/_hooks/registration.py +13 -0
- moovio_sdk/_hooks/sdkhooks.py +76 -0
- moovio_sdk/_hooks/types.py +106 -0
- moovio_sdk/_version.py +15 -0
- moovio_sdk/accounts.py +2461 -0
- moovio_sdk/adjustments.py +463 -0
- moovio_sdk/apple_pay.py +1417 -0
- moovio_sdk/authentication.py +531 -0
- moovio_sdk/avatars.py +231 -0
- moovio_sdk/bank_accounts.py +2445 -0
- moovio_sdk/basesdk.py +363 -0
- moovio_sdk/branding.py +1089 -0
- moovio_sdk/capabilities.py +1001 -0
- moovio_sdk/card_issuing.py +1351 -0
- moovio_sdk/cards.py +1469 -0
- moovio_sdk/disputes.py +2985 -0
- moovio_sdk/end_to_end_encryption.py +453 -0
- moovio_sdk/enriched_address.py +307 -0
- moovio_sdk/enriched_profile.py +235 -0
- moovio_sdk/fee_plans.py +1759 -0
- moovio_sdk/files.py +775 -0
- moovio_sdk/httpclient.py +136 -0
- moovio_sdk/industries.py +239 -0
- moovio_sdk/institutions.py +261 -0
- moovio_sdk/issuing_transactions.py +1228 -0
- moovio_sdk/models/__init__.py +4 -0
- moovio_sdk/models/components/__init__.py +1411 -0
- moovio_sdk/models/components/account.py +96 -0
- moovio_sdk/models/components/accountcapability.py +20 -0
- moovio_sdk/models/components/accountcountries.py +18 -0
- moovio_sdk/models/components/accountnameverification.py +28 -0
- moovio_sdk/models/components/accounttype.py +11 -0
- moovio_sdk/models/components/accountverificationstatus.py +19 -0
- moovio_sdk/models/components/achcreditsamedaypaymentmethod.py +38 -0
- moovio_sdk/models/components/achcreditstandardpaymentmethod.py +38 -0
- moovio_sdk/models/components/achdebitcollectpaymentmethod.py +38 -0
- moovio_sdk/models/components/achdebitfundpaymentmethod.py +38 -0
- moovio_sdk/models/components/achexception.py +20 -0
- moovio_sdk/models/components/achlocation.py +26 -0
- moovio_sdk/models/components/achparticipant.py +93 -0
- moovio_sdk/models/components/achpaymentdetails.py +30 -0
- moovio_sdk/models/components/achpaymentdetailserror.py +22 -0
- moovio_sdk/models/components/achpaymentsettings.py +16 -0
- moovio_sdk/models/components/achreturncode.py +51 -0
- moovio_sdk/models/components/achtransactiondetails.py +94 -0
- moovio_sdk/models/components/achtransactionstatus.py +15 -0
- moovio_sdk/models/components/addcapabilities.py +15 -0
- moovio_sdk/models/components/address.py +30 -0
- moovio_sdk/models/components/addresserror.py +32 -0
- moovio_sdk/models/components/addresssuggestion.py +34 -0
- moovio_sdk/models/components/addressupdate.py +32 -0
- moovio_sdk/models/components/adjustment.py +29 -0
- moovio_sdk/models/components/amount.py +26 -0
- moovio_sdk/models/components/amountdecimal.py +27 -0
- moovio_sdk/models/components/amountupdate.py +27 -0
- moovio_sdk/models/components/amountvalidationerror.py +17 -0
- moovio_sdk/models/components/applebillingcontact.py +53 -0
- moovio_sdk/models/components/applepayheader.py +41 -0
- moovio_sdk/models/components/applepaymerchantdomains.py +32 -0
- moovio_sdk/models/components/applepaypaymentmethod.py +33 -0
- moovio_sdk/models/components/applepayresponse.py +70 -0
- moovio_sdk/models/components/applicationscope.py +41 -0
- moovio_sdk/models/components/asynccreatedrefund.py +26 -0
- moovio_sdk/models/components/asynctransfer.py +18 -0
- moovio_sdk/models/components/authorizeduser.py +21 -0
- moovio_sdk/models/components/authtoken.py +36 -0
- moovio_sdk/models/components/authtokenrequest.py +46 -0
- moovio_sdk/models/components/bankaccount.py +98 -0
- moovio_sdk/models/components/bankaccountexception.py +96 -0
- moovio_sdk/models/components/bankaccountholdertype.py +11 -0
- moovio_sdk/models/components/bankaccountintegration.py +34 -0
- moovio_sdk/models/components/bankaccountpayload.py +21 -0
- moovio_sdk/models/components/bankaccountstatus.py +12 -0
- moovio_sdk/models/components/bankaccountstatusreason.py +23 -0
- moovio_sdk/models/components/bankaccounttype.py +13 -0
- moovio_sdk/models/components/bankaccountverification.py +30 -0
- moovio_sdk/models/components/bankaccountverificationcreated.py +21 -0
- moovio_sdk/models/components/bankaccountverificationmethod.py +9 -0
- moovio_sdk/models/components/bankaccountverificationstatus.py +13 -0
- moovio_sdk/models/components/bankaccountwaitfor.py +9 -0
- moovio_sdk/models/components/basicpaymentmethod.py +24 -0
- moovio_sdk/models/components/billablefee.py +54 -0
- moovio_sdk/models/components/birthdate.py +19 -0
- moovio_sdk/models/components/birthdateerror.py +20 -0
- moovio_sdk/models/components/birthdateupdate.py +20 -0
- moovio_sdk/models/components/birthdatevalidationerror.py +20 -0
- moovio_sdk/models/components/brandcolor.py +15 -0
- moovio_sdk/models/components/brandcolors.py +21 -0
- moovio_sdk/models/components/brandcolorvalidationerror.py +14 -0
- moovio_sdk/models/components/brandproperties.py +16 -0
- moovio_sdk/models/components/businessprofile.py +81 -0
- moovio_sdk/models/components/businesstype.py +19 -0
- moovio_sdk/models/components/calltoaction.py +19 -0
- moovio_sdk/models/components/cancellation.py +22 -0
- moovio_sdk/models/components/cancellationstatus.py +10 -0
- moovio_sdk/models/components/capabilitieserror.py +14 -0
- moovio_sdk/models/components/capability.py +56 -0
- moovio_sdk/models/components/capabilityid.py +18 -0
- moovio_sdk/models/components/capabilityrequirement.py +26 -0
- moovio_sdk/models/components/capabilitystatus.py +13 -0
- moovio_sdk/models/components/card.py +164 -0
- moovio_sdk/models/components/cardaccountupdater.py +28 -0
- moovio_sdk/models/components/cardacquiringdispute.py +26 -0
- moovio_sdk/models/components/cardacquiringmodel.py +11 -0
- moovio_sdk/models/components/cardacquiringrefund.py +42 -0
- moovio_sdk/models/components/cardaddress.py +32 -0
- moovio_sdk/models/components/cardbrand.py +14 -0
- moovio_sdk/models/components/cardexpiration.py +20 -0
- moovio_sdk/models/components/cardexpirationerror.py +17 -0
- moovio_sdk/models/components/cardissuingnetwork.py +12 -0
- moovio_sdk/models/components/cardpaymentdetails.py +23 -0
- moovio_sdk/models/components/cardpaymentdetailserror.py +17 -0
- moovio_sdk/models/components/cardpaymentpaymentmethod.py +33 -0
- moovio_sdk/models/components/cardpaymentsettings.py +23 -0
- moovio_sdk/models/components/cardtransactiondetails.py +94 -0
- moovio_sdk/models/components/cardtransactionfailurecode.py +32 -0
- moovio_sdk/models/components/cardtransactionstatus.py +15 -0
- moovio_sdk/models/components/cardtype.py +13 -0
- moovio_sdk/models/components/cardupdatereason.py +16 -0
- moovio_sdk/models/components/cardverification.py +38 -0
- moovio_sdk/models/components/cardverificationresult.py +12 -0
- moovio_sdk/models/components/cardvolumedistribution.py +29 -0
- moovio_sdk/models/components/cardvolumedistributionerror.py +32 -0
- moovio_sdk/models/components/collectionpaymentmethodtype.py +12 -0
- moovio_sdk/models/components/colorsvalidationerror.py +21 -0
- moovio_sdk/models/components/completebankaccountverification.py +15 -0
- moovio_sdk/models/components/completedmicrodeposits.py +14 -0
- moovio_sdk/models/components/completemicrodeposits.py +20 -0
- moovio_sdk/models/components/countrieserrors.py +14 -0
- moovio_sdk/models/components/createaccount.py +78 -0
- moovio_sdk/models/components/createaccounterror.py +44 -0
- moovio_sdk/models/components/createaccountsettings.py +40 -0
- moovio_sdk/models/components/createapplepaysession.py +21 -0
- moovio_sdk/models/components/createauthorizeduser.py +26 -0
- moovio_sdk/models/components/createauthorizedusererror.py +24 -0
- moovio_sdk/models/components/createauthorizeduserupdate.py +28 -0
- moovio_sdk/models/components/createbusinesserror.py +88 -0
- moovio_sdk/models/components/createbusinessprofile.py +69 -0
- moovio_sdk/models/components/createevidencefilemultipart.py +63 -0
- moovio_sdk/models/components/createevidencetext.py +20 -0
- moovio_sdk/models/components/createfeeplanagreement.py +14 -0
- moovio_sdk/models/components/createindividualerror.py +72 -0
- moovio_sdk/models/components/createindividualprofile.py +37 -0
- moovio_sdk/models/components/createpaymentlink.py +95 -0
- moovio_sdk/models/components/createprofile.py +22 -0
- moovio_sdk/models/components/createprofileerror.py +19 -0
- moovio_sdk/models/components/createrefund.py +26 -0
- moovio_sdk/models/components/createrefundresponse.py +18 -0
- moovio_sdk/models/components/createrepresentative.py +50 -0
- moovio_sdk/models/components/createreversal.py +15 -0
- moovio_sdk/models/components/createsweepconfig.py +41 -0
- moovio_sdk/models/components/createterminalapplication.py +42 -0
- moovio_sdk/models/components/createtransfer.py +49 -0
- moovio_sdk/models/components/createtransferdestination.py +37 -0
- moovio_sdk/models/components/createtransferdestinationach.py +26 -0
- moovio_sdk/models/components/createtransferdestinationcard.py +19 -0
- moovio_sdk/models/components/createtransferoptions.py +24 -0
- moovio_sdk/models/components/createtransfersource.py +48 -0
- moovio_sdk/models/components/createtransfersourceach.py +40 -0
- moovio_sdk/models/components/createtransfersourcecard.py +35 -0
- moovio_sdk/models/components/customersupport.py +33 -0
- moovio_sdk/models/components/customersupporterror.py +25 -0
- moovio_sdk/models/components/debitholdperiod.py +12 -0
- moovio_sdk/models/components/disbursementpaymentmethodtype.py +13 -0
- moovio_sdk/models/components/displayoptionserror.py +23 -0
- moovio_sdk/models/components/dispute.py +76 -0
- moovio_sdk/models/components/disputeevidenceresponse.py +49 -0
- moovio_sdk/models/components/disputephase.py +13 -0
- moovio_sdk/models/components/disputestatus.py +20 -0
- moovio_sdk/models/components/disputetransferdetails.py +16 -0
- moovio_sdk/models/components/document.py +37 -0
- moovio_sdk/models/components/documenttype.py +13 -0
- moovio_sdk/models/components/domesticpullfromcard.py +12 -0
- moovio_sdk/models/components/domesticpushtocard.py +13 -0
- moovio_sdk/models/components/e2eetoken.py +25 -0
- moovio_sdk/models/components/e2eetokenupdate.py +26 -0
- moovio_sdk/models/components/end2endencryptionerror.py +14 -0
- moovio_sdk/models/components/enrichedaddressresponse.py +15 -0
- moovio_sdk/models/components/enrichedbusinessprofile.py +37 -0
- moovio_sdk/models/components/enrichedbusinessresponse.py +18 -0
- moovio_sdk/models/components/enrichedindustries.py +15 -0
- moovio_sdk/models/components/enrichedindustry.py +32 -0
- moovio_sdk/models/components/enrichedindustrycodes.py +17 -0
- moovio_sdk/models/components/evidencetextresponse.py +28 -0
- moovio_sdk/models/components/evidencetype.py +15 -0
- moovio_sdk/models/components/evidenceuploadresponse.py +50 -0
- moovio_sdk/models/components/facilitatorfee.py +48 -0
- moovio_sdk/models/components/feecategory.py +16 -0
- moovio_sdk/models/components/feemodel.py +12 -0
- moovio_sdk/models/components/feeplan.py +43 -0
- moovio_sdk/models/components/feeplanagreement.py +51 -0
- moovio_sdk/models/components/feeplanagreementstatus.py +9 -0
- moovio_sdk/models/components/feeproperties.py +49 -0
- moovio_sdk/models/components/filedetails.py +55 -0
- moovio_sdk/models/components/filepurpose.py +15 -0
- moovio_sdk/models/components/filestatus.py +12 -0
- moovio_sdk/models/components/fileuploadrequestmultipart.py +69 -0
- moovio_sdk/models/components/financialinstitutions.py +18 -0
- moovio_sdk/models/components/fulfillmentdetails.py +24 -0
- moovio_sdk/models/components/fulfillmentdetailserror.py +20 -0
- moovio_sdk/models/components/fullissuedcard.py +92 -0
- moovio_sdk/models/components/generatedby.py +39 -0
- moovio_sdk/models/components/generatedbyaccountid.py +15 -0
- moovio_sdk/models/components/generatedbybankaccountid.py +17 -0
- moovio_sdk/models/components/generatedbycardid.py +15 -0
- moovio_sdk/models/components/generatedbydisputeid.py +15 -0
- moovio_sdk/models/components/generatedbytransferid.py +15 -0
- moovio_sdk/models/components/governmentid.py +40 -0
- moovio_sdk/models/components/governmentiderror.py +40 -0
- moovio_sdk/models/components/granttype.py +15 -0
- moovio_sdk/models/components/incurredfee.py +44 -0
- moovio_sdk/models/components/individualname.py +32 -0
- moovio_sdk/models/components/individualnameerror.py +24 -0
- moovio_sdk/models/components/individualnameupdate.py +32 -0
- moovio_sdk/models/components/individualprofile.py +45 -0
- moovio_sdk/models/components/industrycodes.py +20 -0
- moovio_sdk/models/components/issuedcard.py +78 -0
- moovio_sdk/models/components/issuedcardauthorization.py +53 -0
- moovio_sdk/models/components/issuedcardauthorizationevent.py +37 -0
- moovio_sdk/models/components/issuedcardauthorizationeventresult.py +12 -0
- moovio_sdk/models/components/issuedcardeventtype.py +15 -0
- moovio_sdk/models/components/issuedcardformfactor.py +10 -0
- moovio_sdk/models/components/issuedcardstate.py +19 -0
- moovio_sdk/models/components/issuedcardtransaction.py +42 -0
- moovio_sdk/models/components/issuingauthorizationstatus.py +14 -0
- moovio_sdk/models/components/issuingcontrols.py +25 -0
- moovio_sdk/models/components/issuingcontrolserror.py +22 -0
- moovio_sdk/models/components/issuingintervallimit.py +10 -0
- moovio_sdk/models/components/issuingmerchantdata.py +47 -0
- moovio_sdk/models/components/issuingvelocitylimit.py +21 -0
- moovio_sdk/models/components/issuingvelocitylimiterror.py +17 -0
- moovio_sdk/models/components/jsonwebkey.py +103 -0
- moovio_sdk/models/components/linkapplepay.py +54 -0
- moovio_sdk/models/components/linkapplepaymentdata.py +51 -0
- moovio_sdk/models/components/linkapplepaymentmethod.py +38 -0
- moovio_sdk/models/components/linkapplepaytoken.py +63 -0
- moovio_sdk/models/components/linkbankaccount.py +26 -0
- moovio_sdk/models/components/linkcard.py +54 -0
- moovio_sdk/models/components/linkcardwaitfor.py +8 -0
- moovio_sdk/models/components/linkedapplepaypaymentmethod.py +30 -0
- moovio_sdk/models/components/listfeesfetchrequest.py +19 -0
- moovio_sdk/models/components/manualtermsofservice.py +34 -0
- moovio_sdk/models/components/manualtermsofserviceupdate.py +41 -0
- moovio_sdk/models/components/microdepositstatus.py +8 -0
- moovio_sdk/models/components/mode.py +11 -0
- moovio_sdk/models/components/moovfeedetails.py +36 -0
- moovio_sdk/models/components/moovwalletpaymentmethod.py +31 -0
- moovio_sdk/models/components/mxauthorizationcode.py +26 -0
- moovio_sdk/models/components/mxpayload.py +46 -0
- moovio_sdk/models/components/occurrence.py +44 -0
- moovio_sdk/models/components/occurrencesresponse.py +80 -0
- moovio_sdk/models/components/occurrencestatus.py +12 -0
- moovio_sdk/models/components/onboardinginvite.py +91 -0
- moovio_sdk/models/components/onboardinginviterequest.py +57 -0
- moovio_sdk/models/components/onboardingpartneraccount.py +31 -0
- moovio_sdk/models/components/partnerpricing.py +46 -0
- moovio_sdk/models/components/partnerpricingagreement.py +56 -0
- moovio_sdk/models/components/patchaccount.py +138 -0
- moovio_sdk/models/components/patchaccounterror.py +38 -0
- moovio_sdk/models/components/patchbusiness.py +72 -0
- moovio_sdk/models/components/patchindividual.py +43 -0
- moovio_sdk/models/components/patchprofile.py +29 -0
- moovio_sdk/models/components/patchsweepconfig.py +147 -0
- moovio_sdk/models/components/patchtransfer.py +51 -0
- moovio_sdk/models/components/paymentdetailserror.py +35 -0
- moovio_sdk/models/components/paymentlink.py +125 -0
- moovio_sdk/models/components/paymentlinkcustomeroptions.py +31 -0
- moovio_sdk/models/components/paymentlinkdisplayoptions.py +39 -0
- moovio_sdk/models/components/paymentlinkdisplayoptionsupdate.py +42 -0
- moovio_sdk/models/components/paymentlinkpaymentdetails.py +40 -0
- moovio_sdk/models/components/paymentlinkpaymentdetailsupdate.py +41 -0
- moovio_sdk/models/components/paymentlinkpayoutdetails.py +32 -0
- moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py +33 -0
- moovio_sdk/models/components/paymentlinkstatus.py +11 -0
- moovio_sdk/models/components/paymentmethod.py +82 -0
- moovio_sdk/models/components/paymentmethodsbankaccount.py +65 -0
- moovio_sdk/models/components/paymentmethodscard.py +121 -0
- moovio_sdk/models/components/paymentmethodswallet.py +14 -0
- moovio_sdk/models/components/paymentmethodtype.py +19 -0
- moovio_sdk/models/components/payoutdetailserror.py +21 -0
- moovio_sdk/models/components/payoutrecipient.py +23 -0
- moovio_sdk/models/components/payoutrecipienterror.py +14 -0
- moovio_sdk/models/components/payoutrecipientupdate.py +24 -0
- moovio_sdk/models/components/phonenumber.py +18 -0
- moovio_sdk/models/components/phonenumbererror.py +18 -0
- moovio_sdk/models/components/plaidintegration.py +39 -0
- moovio_sdk/models/components/plaidlinkintegration.py +36 -0
- moovio_sdk/models/components/plaidlinkpayload.py +45 -0
- moovio_sdk/models/components/plaidpayload.py +42 -0
- moovio_sdk/models/components/primaryregulator.py +13 -0
- moovio_sdk/models/components/profile.py +27 -0
- moovio_sdk/models/components/pullfromcardpaymentmethod.py +33 -0
- moovio_sdk/models/components/pushtocardpaymentmethod.py +33 -0
- moovio_sdk/models/components/qrcode.py +16 -0
- moovio_sdk/models/components/receiptkind.py +10 -0
- moovio_sdk/models/components/receiptrequest.py +75 -0
- moovio_sdk/models/components/receiptresponse.py +95 -0
- moovio_sdk/models/components/recur.py +40 -0
- moovio_sdk/models/components/refundcarddetails.py +44 -0
- moovio_sdk/models/components/refundcardstatus.py +12 -0
- moovio_sdk/models/components/refundstatus.py +11 -0
- moovio_sdk/models/components/registerapplepaymerchantdomains.py +22 -0
- moovio_sdk/models/components/representative.py +71 -0
- moovio_sdk/models/components/representativeresponsibilities.py +42 -0
- moovio_sdk/models/components/representativeresponsibilitieserror.py +26 -0
- moovio_sdk/models/components/requestcard.py +44 -0
- moovio_sdk/models/components/requirementerror.py +24 -0
- moovio_sdk/models/components/requirementerrorcode.py +25 -0
- moovio_sdk/models/components/requirementid.py +71 -0
- moovio_sdk/models/components/returnpolicytype.py +11 -0
- moovio_sdk/models/components/reversal.py +23 -0
- moovio_sdk/models/components/reversedwithcancellation.py +14 -0
- moovio_sdk/models/components/reversedwithrefund.py +16 -0
- moovio_sdk/models/components/revoketokenrequest.py +40 -0
- moovio_sdk/models/components/rtpcreditpaymentmethod.py +38 -0
- moovio_sdk/models/components/rtpfailurecode.py +19 -0
- moovio_sdk/models/components/rtprejectioncode.py +25 -0
- moovio_sdk/models/components/rtptransactiondetails.py +56 -0
- moovio_sdk/models/components/rtptransactionstatus.py +13 -0
- moovio_sdk/models/components/runtransfer.py +34 -0
- moovio_sdk/models/components/schedulepaymentmethod.py +56 -0
- moovio_sdk/models/components/scheduleresponse.py +60 -0
- moovio_sdk/models/components/seccode.py +13 -0
- moovio_sdk/models/components/security.py +32 -0
- moovio_sdk/models/components/sentreceipt.py +27 -0
- moovio_sdk/models/components/settings.py +30 -0
- moovio_sdk/models/components/sourcedestinationoptions.py +20 -0
- moovio_sdk/models/components/sweep.py +80 -0
- moovio_sdk/models/components/sweepconfig.py +81 -0
- moovio_sdk/models/components/sweepconfigpaymentmethod.py +31 -0
- moovio_sdk/models/components/sweepconfigstatus.py +9 -0
- moovio_sdk/models/components/sweepstatus.py +13 -0
- moovio_sdk/models/components/taxid.py +25 -0
- moovio_sdk/models/components/taxidupdate.py +26 -0
- moovio_sdk/models/components/terminalapplication.py +55 -0
- moovio_sdk/models/components/terminalapplicationplatform.py +12 -0
- moovio_sdk/models/components/terminalapplicationstatus.py +13 -0
- moovio_sdk/models/components/termsofservice.py +26 -0
- moovio_sdk/models/components/termsofserviceerror.py +39 -0
- moovio_sdk/models/components/termsofservicetoken.py +17 -0
- moovio_sdk/models/components/termsofservicetokenupdate.py +18 -0
- moovio_sdk/models/components/tokentype.py +10 -0
- moovio_sdk/models/components/transactionsource.py +16 -0
- moovio_sdk/models/components/transfer.py +126 -0
- moovio_sdk/models/components/transferaccount.py +20 -0
- moovio_sdk/models/components/transferdestination.py +83 -0
- moovio_sdk/models/components/transferfailurereason.py +14 -0
- moovio_sdk/models/components/transferoptions.py +23 -0
- moovio_sdk/models/components/transferresponse.py +15 -0
- moovio_sdk/models/components/transfersource.py +80 -0
- moovio_sdk/models/components/transferstatus.py +16 -0
- moovio_sdk/models/components/transferwaitfor.py +8 -0
- moovio_sdk/models/components/underwriting.py +56 -0
- moovio_sdk/models/components/underwritingstatus.py +16 -0
- moovio_sdk/models/components/updateapplepaymerchantdomains.py +26 -0
- moovio_sdk/models/components/updatebrand.py +15 -0
- moovio_sdk/models/components/updatecard.py +51 -0
- moovio_sdk/models/components/updatecardaddress.py +32 -0
- moovio_sdk/models/components/updatecardexpiration.py +17 -0
- moovio_sdk/models/components/updatecolor.py +14 -0
- moovio_sdk/models/components/updatecolors.py +18 -0
- moovio_sdk/models/components/updateevidence.py +23 -0
- moovio_sdk/models/components/updateissuedcard.py +44 -0
- moovio_sdk/models/components/updatepaymentlink.py +98 -0
- moovio_sdk/models/components/updaterepresentative.py +224 -0
- moovio_sdk/models/components/updateunderwriting.py +43 -0
- moovio_sdk/models/components/upsertschedule.py +26 -0
- moovio_sdk/models/components/verification.py +54 -0
- moovio_sdk/models/components/verificationstatus.py +17 -0
- moovio_sdk/models/components/verificationstatusdetail.py +23 -0
- moovio_sdk/models/components/volumebycustomertype.py +21 -0
- moovio_sdk/models/components/volumebycustomertypeerror.py +22 -0
- moovio_sdk/models/components/wallet.py +27 -0
- moovio_sdk/models/components/walletavailablebalance.py +30 -0
- moovio_sdk/models/components/wallettransaction.py +114 -0
- moovio_sdk/models/components/wallettransactionsourcetype.py +13 -0
- moovio_sdk/models/components/wallettransactionstatus.py +11 -0
- moovio_sdk/models/components/wallettransactiontype.py +32 -0
- moovio_sdk/models/errors/__init__.py +155 -0
- moovio_sdk/models/errors/addcapabilitieserror.py +23 -0
- moovio_sdk/models/errors/apierror.py +22 -0
- moovio_sdk/models/errors/assigncountrieserror.py +20 -0
- moovio_sdk/models/errors/authtokenrequesterror.py +22 -0
- moovio_sdk/models/errors/bankaccountvalidationerror.py +30 -0
- moovio_sdk/models/errors/brandvalidationerror.py +23 -0
- moovio_sdk/models/errors/cardacquiringrefund.py +44 -0
- moovio_sdk/models/errors/createaccount.py +24 -0
- moovio_sdk/models/errors/createpaymentlinkerror.py +46 -0
- moovio_sdk/models/errors/createsweepconfigerror.py +40 -0
- moovio_sdk/models/errors/feeplanagreementerror.py +22 -0
- moovio_sdk/models/errors/fileuploadvalidationerror.py +35 -0
- moovio_sdk/models/errors/filevalidationerror.py +28 -0
- moovio_sdk/models/errors/genericerror.py +19 -0
- moovio_sdk/models/errors/linkapplepayerror.py +36 -0
- moovio_sdk/models/errors/linkcarderror.py +47 -0
- moovio_sdk/models/errors/microdepositvalidationerror.py +20 -0
- moovio_sdk/models/errors/onboardinginviteerror.py +34 -0
- moovio_sdk/models/errors/patchsweepconfigerror.py +38 -0
- moovio_sdk/models/errors/receiptvalidationerror.py +40 -0
- moovio_sdk/models/errors/refundvalidationerror.py +23 -0
- moovio_sdk/models/errors/representativevalidationerror.py +68 -0
- moovio_sdk/models/errors/requestcarderror.py +42 -0
- moovio_sdk/models/errors/reversalvalidationerror.py +20 -0
- moovio_sdk/models/errors/revoketokenrequesterror.py +22 -0
- moovio_sdk/models/errors/schedulevalidationerror.py +24 -0
- moovio_sdk/models/errors/terminalapplicationerror.py +30 -0
- moovio_sdk/models/errors/transfer.py +108 -0
- moovio_sdk/models/errors/transferoptionsvalidationerror.py +24 -0
- moovio_sdk/models/errors/transfervalidationerror.py +49 -0
- moovio_sdk/models/errors/updateaccount.py +24 -0
- moovio_sdk/models/errors/updatecarderror.py +43 -0
- moovio_sdk/models/errors/updateissuedcarderror.py +32 -0
- moovio_sdk/models/errors/updatepaymentlinkerror.py +36 -0
- moovio_sdk/models/errors/updateunderwritingerror.py +70 -0
- moovio_sdk/models/internal/__init__.py +6 -0
- moovio_sdk/models/internal/globals.py +40 -0
- moovio_sdk/models/operations/__init__.py +1824 -0
- moovio_sdk/models/operations/acceptdispute.py +71 -0
- moovio_sdk/models/operations/assignaccountcountries.py +75 -0
- moovio_sdk/models/operations/cancelschedule.py +67 -0
- moovio_sdk/models/operations/completebankaccountverification.py +85 -0
- moovio_sdk/models/operations/completemicrodeposits.py +87 -0
- moovio_sdk/models/operations/createaccesstoken.py +52 -0
- moovio_sdk/models/operations/createaccount.py +52 -0
- moovio_sdk/models/operations/createapplepaysession.py +81 -0
- moovio_sdk/models/operations/createbrand.py +75 -0
- moovio_sdk/models/operations/createcancellation.py +75 -0
- moovio_sdk/models/operations/createfeeplanagreements.py +80 -0
- moovio_sdk/models/operations/createonboardinginvite.py +52 -0
- moovio_sdk/models/operations/createpaymentlink.py +78 -0
- moovio_sdk/models/operations/createreceipts.py +52 -0
- moovio_sdk/models/operations/createrepresentative.py +80 -0
- moovio_sdk/models/operations/createreversal.py +98 -0
- moovio_sdk/models/operations/createschedule.py +78 -0
- moovio_sdk/models/operations/createsweepconfig.py +78 -0
- moovio_sdk/models/operations/createterminalapplication.py +54 -0
- moovio_sdk/models/operations/createtransfer.py +125 -0
- moovio_sdk/models/operations/createtransferoptions.py +52 -0
- moovio_sdk/models/operations/deletedisputeevidencefile.py +74 -0
- moovio_sdk/models/operations/deleterepresentative.py +71 -0
- moovio_sdk/models/operations/deleteterminalapplication.py +60 -0
- moovio_sdk/models/operations/disablebankaccount.py +67 -0
- moovio_sdk/models/operations/disablecapability.py +76 -0
- moovio_sdk/models/operations/disablecard.py +67 -0
- moovio_sdk/models/operations/disablepaymentlink.py +67 -0
- moovio_sdk/models/operations/disconnectaccount.py +60 -0
- moovio_sdk/models/operations/generateendtoendkey.py +60 -0
- moovio_sdk/models/operations/getaccount.py +64 -0
- moovio_sdk/models/operations/getaccountcountries.py +64 -0
- moovio_sdk/models/operations/getadjustment.py +71 -0
- moovio_sdk/models/operations/getapplepaymerchantdomains.py +68 -0
- moovio_sdk/models/operations/getavatar.py +66 -0
- moovio_sdk/models/operations/getbankaccount.py +71 -0
- moovio_sdk/models/operations/getbankaccountverification.py +73 -0
- moovio_sdk/models/operations/getbrand.py +64 -0
- moovio_sdk/models/operations/getcancellation.py +84 -0
- moovio_sdk/models/operations/getcapability.py +82 -0
- moovio_sdk/models/operations/getcard.py +71 -0
- moovio_sdk/models/operations/getdispute.py +71 -0
- moovio_sdk/models/operations/getdisputeevidence.py +80 -0
- moovio_sdk/models/operations/getdisputeevidencedata.py +90 -0
- moovio_sdk/models/operations/getenrichmentaddress.py +178 -0
- moovio_sdk/models/operations/getenrichmentprofile.py +64 -0
- moovio_sdk/models/operations/getfiledetails.py +71 -0
- moovio_sdk/models/operations/getfullissuedcard.py +73 -0
- moovio_sdk/models/operations/getissuedcard.py +73 -0
- moovio_sdk/models/operations/getissuedcardauthorization.py +75 -0
- moovio_sdk/models/operations/getissuedcardtransaction.py +75 -0
- moovio_sdk/models/operations/getmerchantprocessingagreement.py +64 -0
- moovio_sdk/models/operations/getonboardinginvite.py +62 -0
- moovio_sdk/models/operations/getpaymentlink.py +71 -0
- moovio_sdk/models/operations/getpaymentlinkqrcode.py +84 -0
- moovio_sdk/models/operations/getpaymentmethod.py +71 -0
- moovio_sdk/models/operations/getrefund.py +84 -0
- moovio_sdk/models/operations/getrepresentative.py +75 -0
- moovio_sdk/models/operations/getscheduledoccurrence.py +92 -0
- moovio_sdk/models/operations/getschedules.py +71 -0
- moovio_sdk/models/operations/getsweep.py +78 -0
- moovio_sdk/models/operations/getsweepconfig.py +71 -0
- moovio_sdk/models/operations/getterminalapplication.py +66 -0
- moovio_sdk/models/operations/gettermsofservicetoken.py +75 -0
- moovio_sdk/models/operations/gettransfer.py +73 -0
- moovio_sdk/models/operations/getunderwriting.py +64 -0
- moovio_sdk/models/operations/getwallet.py +71 -0
- moovio_sdk/models/operations/getwallettransaction.py +80 -0
- moovio_sdk/models/operations/initiatebankaccountverification.py +89 -0
- moovio_sdk/models/operations/initiatemicrodeposits.py +67 -0
- moovio_sdk/models/operations/initiaterefund.py +131 -0
- moovio_sdk/models/operations/linkapplepaytoken.py +80 -0
- moovio_sdk/models/operations/linkbankaccount.py +96 -0
- moovio_sdk/models/operations/linkcard.py +96 -0
- moovio_sdk/models/operations/listaccounts.py +171 -0
- moovio_sdk/models/operations/listadjustments.py +78 -0
- moovio_sdk/models/operations/listbankaccounts.py +64 -0
- moovio_sdk/models/operations/listcapabilities.py +64 -0
- moovio_sdk/models/operations/listcards.py +64 -0
- moovio_sdk/models/operations/listdisputeevidence.py +73 -0
- moovio_sdk/models/operations/listdisputes.py +172 -0
- moovio_sdk/models/operations/listfeeplanagreements.py +101 -0
- moovio_sdk/models/operations/listfeeplans.py +78 -0
- moovio_sdk/models/operations/listfeesfetch.py +80 -0
- moovio_sdk/models/operations/listfiles.py +64 -0
- moovio_sdk/models/operations/listindustries.py +62 -0
- moovio_sdk/models/operations/listinstitutions.py +92 -0
- moovio_sdk/models/operations/listissuedcardauthorizationevents.py +94 -0
- moovio_sdk/models/operations/listissuedcardauthorizations.py +126 -0
- moovio_sdk/models/operations/listissuedcards.py +94 -0
- moovio_sdk/models/operations/listissuedcardtransactions.py +113 -0
- moovio_sdk/models/operations/listonboardinginvites.py +60 -0
- moovio_sdk/models/operations/listpartnerpricing.py +78 -0
- moovio_sdk/models/operations/listpartnerpricingagreements.py +101 -0
- moovio_sdk/models/operations/listpaymentlinks.py +64 -0
- moovio_sdk/models/operations/listpaymentmethods.py +98 -0
- moovio_sdk/models/operations/listreceipts.py +65 -0
- moovio_sdk/models/operations/listrefunds.py +75 -0
- moovio_sdk/models/operations/listrepresentatives.py +66 -0
- moovio_sdk/models/operations/listschedules.py +81 -0
- moovio_sdk/models/operations/listsweepconfigs.py +64 -0
- moovio_sdk/models/operations/listsweeps.py +108 -0
- moovio_sdk/models/operations/listterminalapplications.py +62 -0
- moovio_sdk/models/operations/listtransfers.py +145 -0
- moovio_sdk/models/operations/listwallets.py +64 -0
- moovio_sdk/models/operations/listwallettransactions.py +189 -0
- moovio_sdk/models/operations/ping.py +56 -0
- moovio_sdk/models/operations/registerapplepaymerchantdomains.py +80 -0
- moovio_sdk/models/operations/requestcapabilities.py +78 -0
- moovio_sdk/models/operations/requestcard.py +80 -0
- moovio_sdk/models/operations/retrievefees.py +117 -0
- moovio_sdk/models/operations/revokeaccesstoken.py +48 -0
- moovio_sdk/models/operations/revokeonboardinginvite.py +58 -0
- moovio_sdk/models/operations/submitdisputeevidence.py +71 -0
- moovio_sdk/models/operations/testendtoendtoken.py +56 -0
- moovio_sdk/models/operations/updateaccount.py +78 -0
- moovio_sdk/models/operations/updateapplepaymerchantdomains.py +78 -0
- moovio_sdk/models/operations/updatebrand.py +78 -0
- moovio_sdk/models/operations/updatecard.py +85 -0
- moovio_sdk/models/operations/updatedisputeevidence.py +92 -0
- moovio_sdk/models/operations/updateissuedcard.py +81 -0
- moovio_sdk/models/operations/updatepaymentlink.py +85 -0
- moovio_sdk/models/operations/updaterepresentative.py +89 -0
- moovio_sdk/models/operations/updateschedule.py +85 -0
- moovio_sdk/models/operations/updatesweepconfig.py +85 -0
- moovio_sdk/models/operations/updatetransfer.py +87 -0
- moovio_sdk/models/operations/uploaddisputeevidencefile.py +87 -0
- moovio_sdk/models/operations/uploaddisputeevidencetext.py +85 -0
- moovio_sdk/models/operations/uploadfile.py +80 -0
- moovio_sdk/models/operations/upsertbrand.py +75 -0
- moovio_sdk/models/operations/upsertunderwriting.py +78 -0
- moovio_sdk/onboarding.py +965 -0
- moovio_sdk/payment_links.py +1694 -0
- moovio_sdk/payment_methods.py +475 -0
- moovio_sdk/ping.py +233 -0
- moovio_sdk/py.typed +1 -0
- moovio_sdk/receipts.py +507 -0
- moovio_sdk/representatives.py +1513 -0
- moovio_sdk/scheduling.py +1565 -0
- moovio_sdk/sdk.py +242 -0
- moovio_sdk/sdkconfiguration.py +59 -0
- moovio_sdk/sweeps.py +1617 -0
- moovio_sdk/terminal_applications.py +1013 -0
- moovio_sdk/transfers.py +3040 -0
- moovio_sdk/types/__init__.py +21 -0
- moovio_sdk/types/basemodel.py +39 -0
- moovio_sdk/underwriting.py +581 -0
- moovio_sdk/utils/__init__.py +101 -0
- moovio_sdk/utils/annotations.py +55 -0
- moovio_sdk/utils/enums.py +34 -0
- moovio_sdk/utils/eventstreaming.py +238 -0
- moovio_sdk/utils/forms.py +202 -0
- moovio_sdk/utils/headers.py +136 -0
- moovio_sdk/utils/logger.py +27 -0
- moovio_sdk/utils/metadata.py +118 -0
- moovio_sdk/utils/queryparams.py +205 -0
- moovio_sdk/utils/requestbodies.py +66 -0
- moovio_sdk/utils/retries.py +217 -0
- moovio_sdk/utils/security.py +195 -0
- moovio_sdk/utils/serializers.py +215 -0
- moovio_sdk/utils/url.py +155 -0
- moovio_sdk/utils/values.py +137 -0
- moovio_sdk/wallet_transactions.py +558 -0
- moovio_sdk/wallets.py +465 -0
- moovio_sdk-0.3.8.dist-info/METADATA +1920 -0
- moovio_sdk-0.3.8.dist-info/RECORD +586 -0
- moovio_sdk-0.3.8.dist-info/WHEEL +4 -0
@@ -0,0 +1,17 @@
|
|
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 UpdateCardExpirationTypedDict(TypedDict):
|
10
|
+
month: NotRequired[str]
|
11
|
+
year: NotRequired[str]
|
12
|
+
|
13
|
+
|
14
|
+
class UpdateCardExpiration(BaseModel):
|
15
|
+
month: Optional[str] = None
|
16
|
+
|
17
|
+
year: Optional[str] = None
|
@@ -0,0 +1,14 @@
|
|
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 UpdateColorTypedDict(TypedDict):
|
10
|
+
accent: NotRequired[str]
|
11
|
+
|
12
|
+
|
13
|
+
class UpdateColor(BaseModel):
|
14
|
+
accent: Optional[str] = None
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .updatecolor import UpdateColor, UpdateColorTypedDict
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
from typing import Optional
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
8
|
+
|
9
|
+
|
10
|
+
class UpdateColorsTypedDict(TypedDict):
|
11
|
+
dark: NotRequired[UpdateColorTypedDict]
|
12
|
+
light: NotRequired[UpdateColorTypedDict]
|
13
|
+
|
14
|
+
|
15
|
+
class UpdateColors(BaseModel):
|
16
|
+
dark: Optional[UpdateColor] = None
|
17
|
+
|
18
|
+
light: Optional[UpdateColor] = None
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .evidencetype import EvidenceType
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
import pydantic
|
7
|
+
from typing import Optional
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class UpdateEvidenceTypedDict(TypedDict):
|
12
|
+
evidence_type: NotRequired[EvidenceType]
|
13
|
+
text: NotRequired[str]
|
14
|
+
r"""If updating text evidence, the new text to associate with the dispute."""
|
15
|
+
|
16
|
+
|
17
|
+
class UpdateEvidence(BaseModel):
|
18
|
+
evidence_type: Annotated[
|
19
|
+
Optional[EvidenceType], pydantic.Field(alias="evidenceType")
|
20
|
+
] = None
|
21
|
+
|
22
|
+
text: Optional[str] = None
|
23
|
+
r"""If updating text evidence, the new text to associate with the dispute."""
|
@@ -0,0 +1,44 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .createauthorizeduserupdate import (
|
5
|
+
CreateAuthorizedUserUpdate,
|
6
|
+
CreateAuthorizedUserUpdateTypedDict,
|
7
|
+
)
|
8
|
+
from .issuedcardstate import IssuedCardState
|
9
|
+
from moovio_sdk.types import BaseModel
|
10
|
+
import pydantic
|
11
|
+
from typing import Optional
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
13
|
+
|
14
|
+
|
15
|
+
class UpdateIssuedCardTypedDict(TypedDict):
|
16
|
+
state: NotRequired[IssuedCardState]
|
17
|
+
r"""The `state` represents the operational status of an issued card. A card can only approve incoming authorizations if it is in an active state.
|
18
|
+
|
19
|
+
- `active`: The card is operational and approves authorizations. Generally becomes active shortly after card creation.
|
20
|
+
- `inactive`: The card cannot approve authorizations. This is currently a temporary state assigned post-creation during the activation process.
|
21
|
+
- `closed`: The card is permanently deactivated and cannot approve authorizations. A card can be closed by request or when it expires.
|
22
|
+
- `pending-verification`: Awaiting additional authorized user verification before the card can be activated.
|
23
|
+
"""
|
24
|
+
memo: NotRequired[str]
|
25
|
+
authorized_user: NotRequired[CreateAuthorizedUserUpdateTypedDict]
|
26
|
+
r"""Fields for identifying an authorized individual."""
|
27
|
+
|
28
|
+
|
29
|
+
class UpdateIssuedCard(BaseModel):
|
30
|
+
state: Optional[IssuedCardState] = None
|
31
|
+
r"""The `state` represents the operational status of an issued card. A card can only approve incoming authorizations if it is in an active state.
|
32
|
+
|
33
|
+
- `active`: The card is operational and approves authorizations. Generally becomes active shortly after card creation.
|
34
|
+
- `inactive`: The card cannot approve authorizations. This is currently a temporary state assigned post-creation during the activation process.
|
35
|
+
- `closed`: The card is permanently deactivated and cannot approve authorizations. A card can be closed by request or when it expires.
|
36
|
+
- `pending-verification`: Awaiting additional authorized user verification before the card can be activated.
|
37
|
+
"""
|
38
|
+
|
39
|
+
memo: Optional[str] = None
|
40
|
+
|
41
|
+
authorized_user: Annotated[
|
42
|
+
Optional[CreateAuthorizedUserUpdate], pydantic.Field(alias="authorizedUser")
|
43
|
+
] = None
|
44
|
+
r"""Fields for identifying an authorized individual."""
|
@@ -0,0 +1,98 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .amountupdate import AmountUpdate, AmountUpdateTypedDict
|
5
|
+
from .paymentlinkcustomeroptions import (
|
6
|
+
PaymentLinkCustomerOptions,
|
7
|
+
PaymentLinkCustomerOptionsTypedDict,
|
8
|
+
)
|
9
|
+
from .paymentlinkdisplayoptionsupdate import (
|
10
|
+
PaymentLinkDisplayOptionsUpdate,
|
11
|
+
PaymentLinkDisplayOptionsUpdateTypedDict,
|
12
|
+
)
|
13
|
+
from .paymentlinkpaymentdetailsupdate import (
|
14
|
+
PaymentLinkPaymentDetailsUpdate,
|
15
|
+
PaymentLinkPaymentDetailsUpdateTypedDict,
|
16
|
+
)
|
17
|
+
from .paymentlinkpayoutdetailsupdate import (
|
18
|
+
PaymentLinkPayoutDetailsUpdate,
|
19
|
+
PaymentLinkPayoutDetailsUpdateTypedDict,
|
20
|
+
)
|
21
|
+
from datetime import datetime
|
22
|
+
from moovio_sdk.types import (
|
23
|
+
BaseModel,
|
24
|
+
Nullable,
|
25
|
+
OptionalNullable,
|
26
|
+
UNSET,
|
27
|
+
UNSET_SENTINEL,
|
28
|
+
)
|
29
|
+
import pydantic
|
30
|
+
from pydantic import model_serializer
|
31
|
+
from typing import Optional
|
32
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
33
|
+
|
34
|
+
|
35
|
+
class UpdatePaymentLinkTypedDict(TypedDict):
|
36
|
+
amount: NotRequired[AmountUpdateTypedDict]
|
37
|
+
expires_on: NotRequired[Nullable[datetime]]
|
38
|
+
display: NotRequired[PaymentLinkDisplayOptionsUpdateTypedDict]
|
39
|
+
r"""Customizable display options for a payment link."""
|
40
|
+
customer: NotRequired[PaymentLinkCustomerOptionsTypedDict]
|
41
|
+
payment: NotRequired[PaymentLinkPaymentDetailsUpdateTypedDict]
|
42
|
+
r"""Options for payment links used to collect payment."""
|
43
|
+
payout: NotRequired[PaymentLinkPayoutDetailsUpdateTypedDict]
|
44
|
+
|
45
|
+
|
46
|
+
class UpdatePaymentLink(BaseModel):
|
47
|
+
amount: Optional[AmountUpdate] = None
|
48
|
+
|
49
|
+
expires_on: Annotated[
|
50
|
+
OptionalNullable[datetime], pydantic.Field(alias="expiresOn")
|
51
|
+
] = UNSET
|
52
|
+
|
53
|
+
display: Optional[PaymentLinkDisplayOptionsUpdate] = None
|
54
|
+
r"""Customizable display options for a payment link."""
|
55
|
+
|
56
|
+
customer: Optional[PaymentLinkCustomerOptions] = None
|
57
|
+
|
58
|
+
payment: Optional[PaymentLinkPaymentDetailsUpdate] = None
|
59
|
+
r"""Options for payment links used to collect payment."""
|
60
|
+
|
61
|
+
payout: Optional[PaymentLinkPayoutDetailsUpdate] = None
|
62
|
+
|
63
|
+
@model_serializer(mode="wrap")
|
64
|
+
def serialize_model(self, handler):
|
65
|
+
optional_fields = [
|
66
|
+
"amount",
|
67
|
+
"expiresOn",
|
68
|
+
"display",
|
69
|
+
"customer",
|
70
|
+
"payment",
|
71
|
+
"payout",
|
72
|
+
]
|
73
|
+
nullable_fields = ["expiresOn"]
|
74
|
+
null_default_fields = []
|
75
|
+
|
76
|
+
serialized = handler(self)
|
77
|
+
|
78
|
+
m = {}
|
79
|
+
|
80
|
+
for n, f in self.model_fields.items():
|
81
|
+
k = f.alias or n
|
82
|
+
val = serialized.get(k)
|
83
|
+
serialized.pop(k, None)
|
84
|
+
|
85
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
86
|
+
is_set = (
|
87
|
+
self.__pydantic_fields_set__.intersection({n})
|
88
|
+
or k in null_default_fields
|
89
|
+
) # pylint: disable=no-member
|
90
|
+
|
91
|
+
if val is not None and val != UNSET_SENTINEL:
|
92
|
+
m[k] = val
|
93
|
+
elif val != UNSET_SENTINEL and (
|
94
|
+
not k in optional_fields or (optional_nullable and is_set)
|
95
|
+
):
|
96
|
+
m[k] = val
|
97
|
+
|
98
|
+
return m
|
@@ -0,0 +1,224 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .individualnameupdate import IndividualNameUpdate, IndividualNameUpdateTypedDict
|
5
|
+
from moovio_sdk.types import (
|
6
|
+
BaseModel,
|
7
|
+
Nullable,
|
8
|
+
OptionalNullable,
|
9
|
+
UNSET,
|
10
|
+
UNSET_SENTINEL,
|
11
|
+
)
|
12
|
+
import pydantic
|
13
|
+
from pydantic import model_serializer
|
14
|
+
from typing import Optional, Union
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
16
|
+
|
17
|
+
|
18
|
+
class PhoneTypedDict(TypedDict):
|
19
|
+
number: NotRequired[str]
|
20
|
+
country_code: NotRequired[str]
|
21
|
+
|
22
|
+
|
23
|
+
class Phone(BaseModel):
|
24
|
+
number: Optional[str] = None
|
25
|
+
|
26
|
+
country_code: Annotated[Optional[str], pydantic.Field(alias="countryCode")] = None
|
27
|
+
|
28
|
+
|
29
|
+
class TwoTypedDict(TypedDict):
|
30
|
+
pass
|
31
|
+
|
32
|
+
|
33
|
+
class Two(BaseModel):
|
34
|
+
pass
|
35
|
+
|
36
|
+
|
37
|
+
EmailTypedDict = TypeAliasType("EmailTypedDict", Union[TwoTypedDict, str])
|
38
|
+
|
39
|
+
|
40
|
+
Email = TypeAliasType("Email", Union[Two, str])
|
41
|
+
|
42
|
+
|
43
|
+
class UpdateRepresentativeAddressTypedDict(TypedDict):
|
44
|
+
address_line1: NotRequired[str]
|
45
|
+
address_line2: NotRequired[str]
|
46
|
+
city: NotRequired[str]
|
47
|
+
state_or_province: NotRequired[str]
|
48
|
+
postal_code: NotRequired[str]
|
49
|
+
country: NotRequired[str]
|
50
|
+
|
51
|
+
|
52
|
+
class UpdateRepresentativeAddress(BaseModel):
|
53
|
+
address_line1: Annotated[Optional[str], pydantic.Field(alias="addressLine1")] = None
|
54
|
+
|
55
|
+
address_line2: Annotated[Optional[str], pydantic.Field(alias="addressLine2")] = None
|
56
|
+
|
57
|
+
city: Optional[str] = None
|
58
|
+
|
59
|
+
state_or_province: Annotated[
|
60
|
+
Optional[str], pydantic.Field(alias="stateOrProvince")
|
61
|
+
] = None
|
62
|
+
|
63
|
+
postal_code: Annotated[Optional[str], pydantic.Field(alias="postalCode")] = None
|
64
|
+
|
65
|
+
country: Optional[str] = None
|
66
|
+
|
67
|
+
|
68
|
+
class UpdateRepresentativeBirthDateTypedDict(TypedDict):
|
69
|
+
day: NotRequired[int]
|
70
|
+
month: NotRequired[int]
|
71
|
+
year: NotRequired[int]
|
72
|
+
|
73
|
+
|
74
|
+
class UpdateRepresentativeBirthDate(BaseModel):
|
75
|
+
day: Optional[int] = None
|
76
|
+
|
77
|
+
month: Optional[int] = None
|
78
|
+
|
79
|
+
year: Optional[int] = None
|
80
|
+
|
81
|
+
|
82
|
+
class UpdateRepresentativeSsnTypedDict(TypedDict):
|
83
|
+
full: NotRequired[str]
|
84
|
+
last_four: NotRequired[str]
|
85
|
+
|
86
|
+
|
87
|
+
class UpdateRepresentativeSsn(BaseModel):
|
88
|
+
full: Optional[str] = None
|
89
|
+
|
90
|
+
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
91
|
+
|
92
|
+
|
93
|
+
class UpdateRepresentativeItinTypedDict(TypedDict):
|
94
|
+
full: NotRequired[str]
|
95
|
+
last_four: NotRequired[str]
|
96
|
+
|
97
|
+
|
98
|
+
class UpdateRepresentativeItin(BaseModel):
|
99
|
+
full: Optional[str] = None
|
100
|
+
|
101
|
+
last_four: Annotated[Optional[str], pydantic.Field(alias="lastFour")] = None
|
102
|
+
|
103
|
+
|
104
|
+
class UpdateRepresentativeGovernmentIDTypedDict(TypedDict):
|
105
|
+
ssn: NotRequired[UpdateRepresentativeSsnTypedDict]
|
106
|
+
itin: NotRequired[UpdateRepresentativeItinTypedDict]
|
107
|
+
|
108
|
+
|
109
|
+
class UpdateRepresentativeGovernmentID(BaseModel):
|
110
|
+
ssn: Optional[UpdateRepresentativeSsn] = None
|
111
|
+
|
112
|
+
itin: Optional[UpdateRepresentativeItin] = None
|
113
|
+
|
114
|
+
|
115
|
+
class ResponsibilitiesTypedDict(TypedDict):
|
116
|
+
r"""Describes the job responsibilities of a business representative."""
|
117
|
+
|
118
|
+
is_controller: NotRequired[bool]
|
119
|
+
r"""Indicates whether this individual has significant management responsibilities within the business."""
|
120
|
+
is_owner: NotRequired[bool]
|
121
|
+
r"""If `true`, this field indicates that the individual has a business ownership stake of at least 25% in the
|
122
|
+
business. If the representative does not own at least 25% of the business, this field should be `false`.
|
123
|
+
"""
|
124
|
+
ownership_percentage: NotRequired[int]
|
125
|
+
r"""The percentage of ownership this individual has in the business (required if `isOwner` is `true`)."""
|
126
|
+
job_title: NotRequired[str]
|
127
|
+
|
128
|
+
|
129
|
+
class Responsibilities(BaseModel):
|
130
|
+
r"""Describes the job responsibilities of a business representative."""
|
131
|
+
|
132
|
+
is_controller: Annotated[Optional[bool], pydantic.Field(alias="isController")] = (
|
133
|
+
None
|
134
|
+
)
|
135
|
+
r"""Indicates whether this individual has significant management responsibilities within the business."""
|
136
|
+
|
137
|
+
is_owner: Annotated[Optional[bool], pydantic.Field(alias="isOwner")] = None
|
138
|
+
r"""If `true`, this field indicates that the individual has a business ownership stake of at least 25% in the
|
139
|
+
business. If the representative does not own at least 25% of the business, this field should be `false`.
|
140
|
+
"""
|
141
|
+
|
142
|
+
ownership_percentage: Annotated[
|
143
|
+
Optional[int], pydantic.Field(alias="ownershipPercentage")
|
144
|
+
] = None
|
145
|
+
r"""The percentage of ownership this individual has in the business (required if `isOwner` is `true`)."""
|
146
|
+
|
147
|
+
job_title: Annotated[Optional[str], pydantic.Field(alias="jobTitle")] = None
|
148
|
+
|
149
|
+
|
150
|
+
class UpdateRepresentativeTypedDict(TypedDict):
|
151
|
+
name: NotRequired[IndividualNameUpdateTypedDict]
|
152
|
+
phone: NotRequired[Nullable[PhoneTypedDict]]
|
153
|
+
email: NotRequired[Nullable[EmailTypedDict]]
|
154
|
+
address: NotRequired[Nullable[UpdateRepresentativeAddressTypedDict]]
|
155
|
+
birth_date: NotRequired[Nullable[UpdateRepresentativeBirthDateTypedDict]]
|
156
|
+
government_id: NotRequired[Nullable[UpdateRepresentativeGovernmentIDTypedDict]]
|
157
|
+
responsibilities: NotRequired[Nullable[ResponsibilitiesTypedDict]]
|
158
|
+
|
159
|
+
|
160
|
+
class UpdateRepresentative(BaseModel):
|
161
|
+
name: Optional[IndividualNameUpdate] = None
|
162
|
+
|
163
|
+
phone: OptionalNullable[Phone] = UNSET
|
164
|
+
|
165
|
+
email: OptionalNullable[Email] = UNSET
|
166
|
+
|
167
|
+
address: OptionalNullable[UpdateRepresentativeAddress] = UNSET
|
168
|
+
|
169
|
+
birth_date: Annotated[
|
170
|
+
OptionalNullable[UpdateRepresentativeBirthDate],
|
171
|
+
pydantic.Field(alias="birthDate"),
|
172
|
+
] = UNSET
|
173
|
+
|
174
|
+
government_id: Annotated[
|
175
|
+
OptionalNullable[UpdateRepresentativeGovernmentID],
|
176
|
+
pydantic.Field(alias="governmentID"),
|
177
|
+
] = UNSET
|
178
|
+
|
179
|
+
responsibilities: OptionalNullable[Responsibilities] = UNSET
|
180
|
+
|
181
|
+
@model_serializer(mode="wrap")
|
182
|
+
def serialize_model(self, handler):
|
183
|
+
optional_fields = [
|
184
|
+
"name",
|
185
|
+
"phone",
|
186
|
+
"email",
|
187
|
+
"address",
|
188
|
+
"birthDate",
|
189
|
+
"governmentID",
|
190
|
+
"responsibilities",
|
191
|
+
]
|
192
|
+
nullable_fields = [
|
193
|
+
"phone",
|
194
|
+
"email",
|
195
|
+
"address",
|
196
|
+
"birthDate",
|
197
|
+
"governmentID",
|
198
|
+
"responsibilities",
|
199
|
+
]
|
200
|
+
null_default_fields = []
|
201
|
+
|
202
|
+
serialized = handler(self)
|
203
|
+
|
204
|
+
m = {}
|
205
|
+
|
206
|
+
for n, f in self.model_fields.items():
|
207
|
+
k = f.alias or n
|
208
|
+
val = serialized.get(k)
|
209
|
+
serialized.pop(k, None)
|
210
|
+
|
211
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
212
|
+
is_set = (
|
213
|
+
self.__pydantic_fields_set__.intersection({n})
|
214
|
+
or k in null_default_fields
|
215
|
+
) # pylint: disable=no-member
|
216
|
+
|
217
|
+
if val is not None and val != UNSET_SENTINEL:
|
218
|
+
m[k] = val
|
219
|
+
elif val != UNSET_SENTINEL and (
|
220
|
+
not k in optional_fields or (optional_nullable and is_set)
|
221
|
+
):
|
222
|
+
m[k] = val
|
223
|
+
|
224
|
+
return m
|
@@ -0,0 +1,43 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .cardvolumedistribution import (
|
5
|
+
CardVolumeDistribution,
|
6
|
+
CardVolumeDistributionTypedDict,
|
7
|
+
)
|
8
|
+
from .fulfillmentdetails import FulfillmentDetails, FulfillmentDetailsTypedDict
|
9
|
+
from .volumebycustomertype import VolumeByCustomerType, VolumeByCustomerTypeTypedDict
|
10
|
+
from moovio_sdk.types import BaseModel
|
11
|
+
import pydantic
|
12
|
+
from typing_extensions import Annotated, TypedDict
|
13
|
+
|
14
|
+
|
15
|
+
class UpdateUnderwritingTypedDict(TypedDict):
|
16
|
+
average_transaction_size: int
|
17
|
+
max_transaction_size: int
|
18
|
+
average_monthly_transaction_volume: int
|
19
|
+
volume_by_customer_type: VolumeByCustomerTypeTypedDict
|
20
|
+
card_volume_distribution: CardVolumeDistributionTypedDict
|
21
|
+
fulfillment: FulfillmentDetailsTypedDict
|
22
|
+
|
23
|
+
|
24
|
+
class UpdateUnderwriting(BaseModel):
|
25
|
+
average_transaction_size: Annotated[
|
26
|
+
int, pydantic.Field(alias="averageTransactionSize")
|
27
|
+
]
|
28
|
+
|
29
|
+
max_transaction_size: Annotated[int, pydantic.Field(alias="maxTransactionSize")]
|
30
|
+
|
31
|
+
average_monthly_transaction_volume: Annotated[
|
32
|
+
int, pydantic.Field(alias="averageMonthlyTransactionVolume")
|
33
|
+
]
|
34
|
+
|
35
|
+
volume_by_customer_type: Annotated[
|
36
|
+
VolumeByCustomerType, pydantic.Field(alias="volumeByCustomerType")
|
37
|
+
]
|
38
|
+
|
39
|
+
card_volume_distribution: Annotated[
|
40
|
+
CardVolumeDistribution, pydantic.Field(alias="cardVolumeDistribution")
|
41
|
+
]
|
42
|
+
|
43
|
+
fulfillment: FulfillmentDetails
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .occurrence import Occurrence, OccurrenceTypedDict
|
5
|
+
from .recur import Recur, RecurTypedDict
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
from typing import List, Optional
|
8
|
+
from typing_extensions import NotRequired, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class UpsertScheduleTypedDict(TypedDict):
|
12
|
+
description: NotRequired[str]
|
13
|
+
r"""Simple description of what the schedule is."""
|
14
|
+
occurrences: NotRequired[List[OccurrenceTypedDict]]
|
15
|
+
recur: NotRequired[RecurTypedDict]
|
16
|
+
r"""Defines configuration for recurring transfers."""
|
17
|
+
|
18
|
+
|
19
|
+
class UpsertSchedule(BaseModel):
|
20
|
+
description: Optional[str] = None
|
21
|
+
r"""Simple description of what the schedule is."""
|
22
|
+
|
23
|
+
occurrences: Optional[List[Occurrence]] = None
|
24
|
+
|
25
|
+
recur: Optional[Recur] = None
|
26
|
+
r"""Defines configuration for recurring transfers."""
|
@@ -0,0 +1,54 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .accountverificationstatus import AccountVerificationStatus
|
5
|
+
from .document import Document, DocumentTypedDict
|
6
|
+
from .verificationstatus import VerificationStatus
|
7
|
+
from .verificationstatusdetail import VerificationStatusDetail
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
import pydantic
|
10
|
+
from typing import List, Optional
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
12
|
+
|
13
|
+
|
14
|
+
class VerificationTypedDict(TypedDict):
|
15
|
+
r"""Describes identity verification status and relevant identity verification documents."""
|
16
|
+
|
17
|
+
status: VerificationStatus
|
18
|
+
r"""Possible states an account verification can be in."""
|
19
|
+
verification_status: NotRequired[AccountVerificationStatus]
|
20
|
+
r"""Possible states an account verification can be in."""
|
21
|
+
details: NotRequired[VerificationStatusDetail]
|
22
|
+
r"""Additional detail for a verification status."""
|
23
|
+
documents: NotRequired[List[DocumentTypedDict]]
|
24
|
+
|
25
|
+
|
26
|
+
class Verification(BaseModel):
|
27
|
+
r"""Describes identity verification status and relevant identity verification documents."""
|
28
|
+
|
29
|
+
status: Annotated[
|
30
|
+
VerificationStatus,
|
31
|
+
pydantic.Field(
|
32
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
|
33
|
+
),
|
34
|
+
]
|
35
|
+
r"""Possible states an account verification can be in."""
|
36
|
+
|
37
|
+
verification_status: Annotated[
|
38
|
+
Optional[AccountVerificationStatus],
|
39
|
+
pydantic.Field(
|
40
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
41
|
+
alias="verificationStatus",
|
42
|
+
),
|
43
|
+
] = None
|
44
|
+
r"""Possible states an account verification can be in."""
|
45
|
+
|
46
|
+
details: Annotated[
|
47
|
+
Optional[VerificationStatusDetail],
|
48
|
+
pydantic.Field(
|
49
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
|
50
|
+
),
|
51
|
+
] = None
|
52
|
+
r"""Additional detail for a verification status."""
|
53
|
+
|
54
|
+
documents: Optional[List[Document]] = None
|
@@ -0,0 +1,17 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
from typing_extensions import deprecated
|
6
|
+
|
7
|
+
|
8
|
+
@deprecated(
|
9
|
+
"warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
|
10
|
+
)
|
11
|
+
class VerificationStatus(str, Enum):
|
12
|
+
r"""Possible states an account verification can be in."""
|
13
|
+
|
14
|
+
UNVERIFIED = "unverified"
|
15
|
+
PENDING = "pending"
|
16
|
+
VERIFIED = "verified"
|
17
|
+
ERRORED = "errored"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
from typing_extensions import deprecated
|
6
|
+
|
7
|
+
|
8
|
+
@deprecated(
|
9
|
+
"warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
|
10
|
+
)
|
11
|
+
class VerificationStatusDetail(str, Enum):
|
12
|
+
r"""Additional detail for a verification status."""
|
13
|
+
|
14
|
+
FAILED_AUTO_VERIFY = "failedAutoVerify"
|
15
|
+
DOC_DOB_MISMATCH = "docDobMismatch"
|
16
|
+
DOC_NAME_MISMATCH = "docNameMismatch"
|
17
|
+
DOC_ADDRESS_MISMATCH = "docAddressMismatch"
|
18
|
+
DOC_NUMBER_MISMATCH = "docNumberMismatch"
|
19
|
+
DOC_INCOMPLETE = "docIncomplete"
|
20
|
+
DOC_FAILED_RISK = "docFailedRisk"
|
21
|
+
POTENTIAL_ACCOUNT_SANCTIONS_MATCH = "potentialAccountSanctionsMatch"
|
22
|
+
POTENTIAL_REPRESENTATIVE_SANCTIONS_MATCH = "potentialRepresentativeSanctionsMatch"
|
23
|
+
FAILED_OTHER = "failedOther"
|
@@ -0,0 +1,21 @@
|
|
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
|
+
import pydantic
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class VolumeByCustomerTypeTypedDict(TypedDict):
|
10
|
+
business_to_business_percentage: int
|
11
|
+
consumer_to_business_percentage: int
|
12
|
+
|
13
|
+
|
14
|
+
class VolumeByCustomerType(BaseModel):
|
15
|
+
business_to_business_percentage: Annotated[
|
16
|
+
int, pydantic.Field(alias="businessToBusinessPercentage")
|
17
|
+
]
|
18
|
+
|
19
|
+
consumer_to_business_percentage: Annotated[
|
20
|
+
int, pydantic.Field(alias="consumerToBusinessPercentage")
|
21
|
+
]
|
@@ -0,0 +1,22 @@
|
|
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
|
+
import pydantic
|
6
|
+
from typing import Optional
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
8
|
+
|
9
|
+
|
10
|
+
class VolumeByCustomerTypeErrorTypedDict(TypedDict):
|
11
|
+
business_to_business_percentage: NotRequired[str]
|
12
|
+
consumer_to_business_percentage: NotRequired[str]
|
13
|
+
|
14
|
+
|
15
|
+
class VolumeByCustomerTypeError(BaseModel):
|
16
|
+
business_to_business_percentage: Annotated[
|
17
|
+
Optional[str], pydantic.Field(alias="businessToBusinessPercentage")
|
18
|
+
] = None
|
19
|
+
|
20
|
+
consumer_to_business_percentage: Annotated[
|
21
|
+
Optional[str], pydantic.Field(alias="consumerToBusinessPercentage")
|
22
|
+
] = None
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .walletavailablebalance import (
|
5
|
+
WalletAvailableBalance,
|
6
|
+
WalletAvailableBalanceTypedDict,
|
7
|
+
)
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
import pydantic
|
10
|
+
from typing_extensions import Annotated, TypedDict
|
11
|
+
|
12
|
+
|
13
|
+
class WalletTypedDict(TypedDict):
|
14
|
+
r"""A Moov wallet to store funds for transfers."""
|
15
|
+
|
16
|
+
wallet_id: str
|
17
|
+
available_balance: WalletAvailableBalanceTypedDict
|
18
|
+
|
19
|
+
|
20
|
+
class Wallet(BaseModel):
|
21
|
+
r"""A Moov wallet to store funds for transfers."""
|
22
|
+
|
23
|
+
wallet_id: Annotated[str, pydantic.Field(alias="walletID")]
|
24
|
+
|
25
|
+
available_balance: Annotated[
|
26
|
+
WalletAvailableBalance, pydantic.Field(alias="availableBalance")
|
27
|
+
]
|