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,20 @@
|
|
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 BirthDateErrorTypedDict(TypedDict):
|
10
|
+
day: NotRequired[str]
|
11
|
+
month: NotRequired[str]
|
12
|
+
year: NotRequired[str]
|
13
|
+
|
14
|
+
|
15
|
+
class BirthDateError(BaseModel):
|
16
|
+
day: Optional[str] = None
|
17
|
+
|
18
|
+
month: Optional[str] = None
|
19
|
+
|
20
|
+
year: Optional[str] = None
|
@@ -0,0 +1,20 @@
|
|
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 BirthDateUpdateTypedDict(TypedDict):
|
10
|
+
day: NotRequired[int]
|
11
|
+
month: NotRequired[int]
|
12
|
+
year: NotRequired[int]
|
13
|
+
|
14
|
+
|
15
|
+
class BirthDateUpdate(BaseModel):
|
16
|
+
day: Optional[int] = None
|
17
|
+
|
18
|
+
month: Optional[int] = None
|
19
|
+
|
20
|
+
year: Optional[int] = None
|
@@ -0,0 +1,20 @@
|
|
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 BirthDateValidationErrorTypedDict(TypedDict):
|
10
|
+
day: NotRequired[str]
|
11
|
+
month: NotRequired[str]
|
12
|
+
year: NotRequired[str]
|
13
|
+
|
14
|
+
|
15
|
+
class BirthDateValidationError(BaseModel):
|
16
|
+
day: Optional[str] = None
|
17
|
+
|
18
|
+
month: Optional[str] = None
|
19
|
+
|
20
|
+
year: Optional[str] = None
|
@@ -0,0 +1,15 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.types import BaseModel
|
5
|
+
from typing_extensions import TypedDict
|
6
|
+
|
7
|
+
|
8
|
+
class BrandColorTypedDict(TypedDict):
|
9
|
+
accent: str
|
10
|
+
r"""A CSS hex color representing an accent color."""
|
11
|
+
|
12
|
+
|
13
|
+
class BrandColor(BaseModel):
|
14
|
+
accent: str
|
15
|
+
r"""A CSS hex color representing an accent color."""
|
@@ -0,0 +1,21 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .brandcolor import BrandColor, BrandColorTypedDict
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
from typing_extensions import TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class BrandColorsTypedDict(TypedDict):
|
10
|
+
r"""Brand colors for light and dark modes."""
|
11
|
+
|
12
|
+
dark: BrandColorTypedDict
|
13
|
+
light: BrandColorTypedDict
|
14
|
+
|
15
|
+
|
16
|
+
class BrandColors(BaseModel):
|
17
|
+
r"""Brand colors for light and dark modes."""
|
18
|
+
|
19
|
+
dark: BrandColor
|
20
|
+
|
21
|
+
light: BrandColor
|
@@ -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 BrandColorValidationErrorTypedDict(TypedDict):
|
10
|
+
accent: NotRequired[str]
|
11
|
+
|
12
|
+
|
13
|
+
class BrandColorValidationError(BaseModel):
|
14
|
+
accent: Optional[str] = None
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .brandcolors import BrandColors, BrandColorsTypedDict
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
from typing_extensions import TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class BrandPropertiesTypedDict(TypedDict):
|
10
|
+
colors: BrandColorsTypedDict
|
11
|
+
r"""Brand colors for light and dark modes."""
|
12
|
+
|
13
|
+
|
14
|
+
class BrandProperties(BaseModel):
|
15
|
+
colors: BrandColors
|
16
|
+
r"""Brand colors for light and dark modes."""
|
@@ -0,0 +1,81 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .address import Address, AddressTypedDict
|
5
|
+
from .businesstype import BusinessType
|
6
|
+
from .industrycodes import IndustryCodes, IndustryCodesTypedDict
|
7
|
+
from .phonenumber import PhoneNumber, PhoneNumberTypedDict
|
8
|
+
from .primaryregulator import PrimaryRegulator
|
9
|
+
from .representative import Representative, RepresentativeTypedDict
|
10
|
+
from moovio_sdk.types import BaseModel
|
11
|
+
import pydantic
|
12
|
+
from typing import List, Optional
|
13
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
14
|
+
|
15
|
+
|
16
|
+
class BusinessProfileTypedDict(TypedDict):
|
17
|
+
r"""Describes a business."""
|
18
|
+
|
19
|
+
legal_business_name: str
|
20
|
+
r"""The legal name under which the entity is registered."""
|
21
|
+
owners_provided: bool
|
22
|
+
doing_business_as: NotRequired[str]
|
23
|
+
r"""A registered trade name under which the business operates, if different from its legal name."""
|
24
|
+
business_type: NotRequired[BusinessType]
|
25
|
+
r"""The type of entity represented by this business."""
|
26
|
+
address: NotRequired[AddressTypedDict]
|
27
|
+
phone: NotRequired[PhoneNumberTypedDict]
|
28
|
+
email: NotRequired[str]
|
29
|
+
website: NotRequired[str]
|
30
|
+
description: NotRequired[str]
|
31
|
+
tax_id_provided: NotRequired[bool]
|
32
|
+
r"""Indicates whether a tax ID has been provided for this business."""
|
33
|
+
representatives: NotRequired[List[RepresentativeTypedDict]]
|
34
|
+
industry_codes: NotRequired[IndustryCodesTypedDict]
|
35
|
+
primary_regulator: NotRequired[PrimaryRegulator]
|
36
|
+
r"""If the business is a financial institution, this field describes its primary regulator."""
|
37
|
+
|
38
|
+
|
39
|
+
class BusinessProfile(BaseModel):
|
40
|
+
r"""Describes a business."""
|
41
|
+
|
42
|
+
legal_business_name: Annotated[str, pydantic.Field(alias="legalBusinessName")]
|
43
|
+
r"""The legal name under which the entity is registered."""
|
44
|
+
|
45
|
+
owners_provided: Annotated[bool, pydantic.Field(alias="ownersProvided")]
|
46
|
+
|
47
|
+
doing_business_as: Annotated[
|
48
|
+
Optional[str], pydantic.Field(alias="doingBusinessAs")
|
49
|
+
] = None
|
50
|
+
r"""A registered trade name under which the business operates, if different from its legal name."""
|
51
|
+
|
52
|
+
business_type: Annotated[
|
53
|
+
Optional[BusinessType], pydantic.Field(alias="businessType")
|
54
|
+
] = None
|
55
|
+
r"""The type of entity represented by this business."""
|
56
|
+
|
57
|
+
address: Optional[Address] = None
|
58
|
+
|
59
|
+
phone: Optional[PhoneNumber] = None
|
60
|
+
|
61
|
+
email: Optional[str] = None
|
62
|
+
|
63
|
+
website: Optional[str] = None
|
64
|
+
|
65
|
+
description: Optional[str] = None
|
66
|
+
|
67
|
+
tax_id_provided: Annotated[
|
68
|
+
Optional[bool], pydantic.Field(alias="taxIDProvided")
|
69
|
+
] = None
|
70
|
+
r"""Indicates whether a tax ID has been provided for this business."""
|
71
|
+
|
72
|
+
representatives: Optional[List[Representative]] = None
|
73
|
+
|
74
|
+
industry_codes: Annotated[
|
75
|
+
Optional[IndustryCodes], pydantic.Field(alias="industryCodes")
|
76
|
+
] = None
|
77
|
+
|
78
|
+
primary_regulator: Annotated[
|
79
|
+
Optional[PrimaryRegulator], pydantic.Field(alias="primaryRegulator")
|
80
|
+
] = None
|
81
|
+
r"""If the business is a financial institution, this field describes its primary regulator."""
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class BusinessType(str, Enum):
|
8
|
+
r"""The type of entity represented by this business."""
|
9
|
+
|
10
|
+
SOLE_PROPRIETORSHIP = "soleProprietorship"
|
11
|
+
UNINCORPORATED_ASSOCIATION = "unincorporatedAssociation"
|
12
|
+
TRUST = "trust"
|
13
|
+
PUBLIC_CORPORATION = "publicCorporation"
|
14
|
+
PRIVATE_CORPORATION = "privateCorporation"
|
15
|
+
LLC = "llc"
|
16
|
+
PARTNERSHIP = "partnership"
|
17
|
+
UNINCORPORATED_NON_PROFIT = "unincorporatedNonProfit"
|
18
|
+
INCORPORATED_NON_PROFIT = "incorporatedNonProfit"
|
19
|
+
GOVERNMENT_ENTITY = "governmentEntity"
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class CallToAction(str, Enum):
|
8
|
+
r"""The text to be displayed on web form's submit button.
|
9
|
+
|
10
|
+
If set to \"auto\" the UI will automatically select between
|
11
|
+
\"pay\" and \"confirm\" for payments and payouts respectively.
|
12
|
+
"""
|
13
|
+
|
14
|
+
PAY = "pay"
|
15
|
+
BOOK = "book"
|
16
|
+
SUBSCRIBE = "subscribe"
|
17
|
+
DONATE = "donate"
|
18
|
+
CONFIRM = "confirm"
|
19
|
+
AUTO = "auto"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .cancellationstatus import CancellationStatus
|
5
|
+
from datetime import datetime
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing_extensions import Annotated, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class CancellationTypedDict(TypedDict):
|
12
|
+
cancellation_id: str
|
13
|
+
status: CancellationStatus
|
14
|
+
created_on: datetime
|
15
|
+
|
16
|
+
|
17
|
+
class Cancellation(BaseModel):
|
18
|
+
cancellation_id: Annotated[str, pydantic.Field(alias="cancellationID")]
|
19
|
+
|
20
|
+
status: CancellationStatus
|
21
|
+
|
22
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
@@ -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 Dict, Optional
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class CapabilitiesErrorTypedDict(TypedDict):
|
10
|
+
capabilities: NotRequired[Dict[str, str]]
|
11
|
+
|
12
|
+
|
13
|
+
class CapabilitiesError(BaseModel):
|
14
|
+
capabilities: Optional[Dict[str, str]] = None
|
@@ -0,0 +1,56 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .capabilityid import CapabilityID
|
5
|
+
from .capabilityrequirement import CapabilityRequirement, CapabilityRequirementTypedDict
|
6
|
+
from .capabilitystatus import CapabilityStatus
|
7
|
+
from datetime import datetime
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
import pydantic
|
10
|
+
from typing import Optional
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
12
|
+
|
13
|
+
|
14
|
+
class CapabilityTypedDict(TypedDict):
|
15
|
+
capability: CapabilityID
|
16
|
+
r"""Moov account capabilities.
|
17
|
+
|
18
|
+
The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
|
19
|
+
"""
|
20
|
+
account_id: str
|
21
|
+
status: CapabilityStatus
|
22
|
+
r"""The status of the capability requested for an account."""
|
23
|
+
created_on: datetime
|
24
|
+
updated_on: datetime
|
25
|
+
requirements: NotRequired[CapabilityRequirementTypedDict]
|
26
|
+
r"""Represents individual and business data necessary to facilitate the enabling of a capability for an account."""
|
27
|
+
disabled_reason: NotRequired[str]
|
28
|
+
disabled_on: NotRequired[datetime]
|
29
|
+
|
30
|
+
|
31
|
+
class Capability(BaseModel):
|
32
|
+
capability: CapabilityID
|
33
|
+
r"""Moov account capabilities.
|
34
|
+
|
35
|
+
The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
|
36
|
+
"""
|
37
|
+
|
38
|
+
account_id: Annotated[str, pydantic.Field(alias="accountID")]
|
39
|
+
|
40
|
+
status: CapabilityStatus
|
41
|
+
r"""The status of the capability requested for an account."""
|
42
|
+
|
43
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
44
|
+
|
45
|
+
updated_on: Annotated[datetime, pydantic.Field(alias="updatedOn")]
|
46
|
+
|
47
|
+
requirements: Optional[CapabilityRequirement] = None
|
48
|
+
r"""Represents individual and business data necessary to facilitate the enabling of a capability for an account."""
|
49
|
+
|
50
|
+
disabled_reason: Annotated[
|
51
|
+
Optional[str], pydantic.Field(alias="disabledReason")
|
52
|
+
] = None
|
53
|
+
|
54
|
+
disabled_on: Annotated[Optional[datetime], pydantic.Field(alias="disabledOn")] = (
|
55
|
+
None
|
56
|
+
)
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class CapabilityID(str, Enum):
|
8
|
+
r"""Moov account capabilities.
|
9
|
+
|
10
|
+
The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
|
11
|
+
"""
|
12
|
+
|
13
|
+
TRANSFERS = "transfers"
|
14
|
+
SEND_FUNDS = "send-funds"
|
15
|
+
COLLECT_FUNDS = "collect-funds"
|
16
|
+
WALLET = "wallet"
|
17
|
+
CARD_ISSUING = "card-issuing"
|
18
|
+
PRODUCTION_APP = "production-app"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .requirementerror import RequirementError, RequirementErrorTypedDict
|
5
|
+
from .requirementid import RequirementID
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing import List, Optional
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
10
|
+
|
11
|
+
|
12
|
+
class CapabilityRequirementTypedDict(TypedDict):
|
13
|
+
r"""Represents individual and business data necessary to facilitate the enabling of a capability for an account."""
|
14
|
+
|
15
|
+
currently_due: NotRequired[List[RequirementID]]
|
16
|
+
errors: NotRequired[List[RequirementErrorTypedDict]]
|
17
|
+
|
18
|
+
|
19
|
+
class CapabilityRequirement(BaseModel):
|
20
|
+
r"""Represents individual and business data necessary to facilitate the enabling of a capability for an account."""
|
21
|
+
|
22
|
+
currently_due: Annotated[
|
23
|
+
Optional[List[RequirementID]], pydantic.Field(alias="currentlyDue")
|
24
|
+
] = None
|
25
|
+
|
26
|
+
errors: Optional[List[RequirementError]] = None
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class CapabilityStatus(str, Enum):
|
8
|
+
r"""The status of the capability requested for an account."""
|
9
|
+
|
10
|
+
ENABLED = "enabled"
|
11
|
+
DISABLED = "disabled"
|
12
|
+
PENDING = "pending"
|
13
|
+
IN_REVIEW = "in-review"
|
@@ -0,0 +1,164 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .basicpaymentmethod import BasicPaymentMethod, BasicPaymentMethodTypedDict
|
5
|
+
from .cardaccountupdater import CardAccountUpdater, CardAccountUpdaterTypedDict
|
6
|
+
from .cardaddress import CardAddress, CardAddressTypedDict
|
7
|
+
from .cardbrand import CardBrand
|
8
|
+
from .cardexpiration import CardExpiration, CardExpirationTypedDict
|
9
|
+
from .cardtype import CardType
|
10
|
+
from .cardverification import CardVerification, CardVerificationTypedDict
|
11
|
+
from .domesticpullfromcard import DomesticPullFromCard
|
12
|
+
from .domesticpushtocard import DomesticPushToCard
|
13
|
+
from moovio_sdk.types import BaseModel
|
14
|
+
import pydantic
|
15
|
+
from typing import List, Optional
|
16
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
17
|
+
|
18
|
+
|
19
|
+
class CardTypedDict(TypedDict):
|
20
|
+
r"""Describes a card on a Moov account."""
|
21
|
+
|
22
|
+
card_id: str
|
23
|
+
r"""ID of the card."""
|
24
|
+
fingerprint: str
|
25
|
+
r"""Uniquely identifies a linked payment card or token.
|
26
|
+
For Apple Pay, the fingerprint is based on the tokenized card number and may vary based on the user's device.
|
27
|
+
This field can be used to identify specific payment methods across multiple accounts on your platform.
|
28
|
+
"""
|
29
|
+
brand: CardBrand
|
30
|
+
r"""The card brand."""
|
31
|
+
card_type: CardType
|
32
|
+
r"""The type of the card."""
|
33
|
+
last_four_card_number: str
|
34
|
+
r"""Last four digits of the card number"""
|
35
|
+
bin: str
|
36
|
+
r"""The first six to eight digits of the card number, which identifies the financial institution that issued the card."""
|
37
|
+
expiration: CardExpirationTypedDict
|
38
|
+
r"""The expiration date of the card or token."""
|
39
|
+
billing_address: CardAddressTypedDict
|
40
|
+
card_verification: CardVerificationTypedDict
|
41
|
+
r"""The results of submitting cardholder data to a card network for verification."""
|
42
|
+
issuer: str
|
43
|
+
r"""Financial institution that issued the card."""
|
44
|
+
issuer_country: str
|
45
|
+
r"""Country where the card was issued."""
|
46
|
+
issuer_url: str
|
47
|
+
r"""URL of the issuer."""
|
48
|
+
issuer_phone: str
|
49
|
+
r"""Phone number of the issuer."""
|
50
|
+
domestic_push_to_card: DomesticPushToCard
|
51
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
52
|
+
domestic_pull_from_card: DomesticPullFromCard
|
53
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
54
|
+
card_category: NotRequired[str]
|
55
|
+
r"""The category or level of the card defined by the issuer.
|
56
|
+
Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
|
57
|
+
"""
|
58
|
+
holder_name: NotRequired[str]
|
59
|
+
r"""The name of the cardholder as it appears on the card."""
|
60
|
+
commercial: NotRequired[bool]
|
61
|
+
r"""If true, the card is for commercial use, or associated with a business.
|
62
|
+
If false, the card is associated with a general consumer.
|
63
|
+
"""
|
64
|
+
regulated: NotRequired[bool]
|
65
|
+
r"""If true, the card issuing bank is regulated, and the scheme fees for debit transactions will be limited based on the Durbin Amendment.
|
66
|
+
If false, the card issuing bank is not regulated, and the scheme fees will not be limited.
|
67
|
+
"""
|
68
|
+
card_on_file: NotRequired[bool]
|
69
|
+
r"""Indicates cardholder has authorized card to be stored for future payments."""
|
70
|
+
merchant_account_id: NotRequired[str]
|
71
|
+
card_account_updater: NotRequired[CardAccountUpdaterTypedDict]
|
72
|
+
r"""The results of the most recent card update request."""
|
73
|
+
payment_methods: NotRequired[List[BasicPaymentMethodTypedDict]]
|
74
|
+
|
75
|
+
|
76
|
+
class Card(BaseModel):
|
77
|
+
r"""Describes a card on a Moov account."""
|
78
|
+
|
79
|
+
card_id: Annotated[str, pydantic.Field(alias="cardID")]
|
80
|
+
r"""ID of the card."""
|
81
|
+
|
82
|
+
fingerprint: str
|
83
|
+
r"""Uniquely identifies a linked payment card or token.
|
84
|
+
For Apple Pay, the fingerprint is based on the tokenized card number and may vary based on the user's device.
|
85
|
+
This field can be used to identify specific payment methods across multiple accounts on your platform.
|
86
|
+
"""
|
87
|
+
|
88
|
+
brand: CardBrand
|
89
|
+
r"""The card brand."""
|
90
|
+
|
91
|
+
card_type: Annotated[CardType, pydantic.Field(alias="cardType")]
|
92
|
+
r"""The type of the card."""
|
93
|
+
|
94
|
+
last_four_card_number: Annotated[str, pydantic.Field(alias="lastFourCardNumber")]
|
95
|
+
r"""Last four digits of the card number"""
|
96
|
+
|
97
|
+
bin: str
|
98
|
+
r"""The first six to eight digits of the card number, which identifies the financial institution that issued the card."""
|
99
|
+
|
100
|
+
expiration: CardExpiration
|
101
|
+
r"""The expiration date of the card or token."""
|
102
|
+
|
103
|
+
billing_address: Annotated[CardAddress, pydantic.Field(alias="billingAddress")]
|
104
|
+
|
105
|
+
card_verification: Annotated[
|
106
|
+
CardVerification, pydantic.Field(alias="cardVerification")
|
107
|
+
]
|
108
|
+
r"""The results of submitting cardholder data to a card network for verification."""
|
109
|
+
|
110
|
+
issuer: str
|
111
|
+
r"""Financial institution that issued the card."""
|
112
|
+
|
113
|
+
issuer_country: Annotated[str, pydantic.Field(alias="issuerCountry")]
|
114
|
+
r"""Country where the card was issued."""
|
115
|
+
|
116
|
+
issuer_url: Annotated[str, pydantic.Field(alias="issuerURL")]
|
117
|
+
r"""URL of the issuer."""
|
118
|
+
|
119
|
+
issuer_phone: Annotated[str, pydantic.Field(alias="issuerPhone")]
|
120
|
+
r"""Phone number of the issuer."""
|
121
|
+
|
122
|
+
domestic_push_to_card: Annotated[
|
123
|
+
DomesticPushToCard, pydantic.Field(alias="domesticPushToCard")
|
124
|
+
]
|
125
|
+
r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
|
126
|
+
|
127
|
+
domestic_pull_from_card: Annotated[
|
128
|
+
DomesticPullFromCard, pydantic.Field(alias="domesticPullFromCard")
|
129
|
+
]
|
130
|
+
r"""Indicates if the card supports domestic pull-from-card transfer."""
|
131
|
+
|
132
|
+
card_category: Annotated[Optional[str], pydantic.Field(alias="cardCategory")] = None
|
133
|
+
r"""The category or level of the card defined by the issuer.
|
134
|
+
Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
|
135
|
+
"""
|
136
|
+
|
137
|
+
holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
|
138
|
+
r"""The name of the cardholder as it appears on the card."""
|
139
|
+
|
140
|
+
commercial: Optional[bool] = None
|
141
|
+
r"""If true, the card is for commercial use, or associated with a business.
|
142
|
+
If false, the card is associated with a general consumer.
|
143
|
+
"""
|
144
|
+
|
145
|
+
regulated: Optional[bool] = None
|
146
|
+
r"""If true, the card issuing bank is regulated, and the scheme fees for debit transactions will be limited based on the Durbin Amendment.
|
147
|
+
If false, the card issuing bank is not regulated, and the scheme fees will not be limited.
|
148
|
+
"""
|
149
|
+
|
150
|
+
card_on_file: Annotated[Optional[bool], pydantic.Field(alias="cardOnFile")] = None
|
151
|
+
r"""Indicates cardholder has authorized card to be stored for future payments."""
|
152
|
+
|
153
|
+
merchant_account_id: Annotated[
|
154
|
+
Optional[str], pydantic.Field(alias="merchantAccountID")
|
155
|
+
] = None
|
156
|
+
|
157
|
+
card_account_updater: Annotated[
|
158
|
+
Optional[CardAccountUpdater], pydantic.Field(alias="cardAccountUpdater")
|
159
|
+
] = None
|
160
|
+
r"""The results of the most recent card update request."""
|
161
|
+
|
162
|
+
payment_methods: Annotated[
|
163
|
+
Optional[List[BasicPaymentMethod]], pydantic.Field(alias="paymentMethods")
|
164
|
+
] = None
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .cardupdatereason import CardUpdateReason
|
5
|
+
from datetime import datetime
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing import Optional
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
10
|
+
|
11
|
+
|
12
|
+
class CardAccountUpdaterTypedDict(TypedDict):
|
13
|
+
r"""The results of the most recent card update request."""
|
14
|
+
|
15
|
+
updated_on: NotRequired[datetime]
|
16
|
+
update_type: NotRequired[CardUpdateReason]
|
17
|
+
r"""The results of the card update request."""
|
18
|
+
|
19
|
+
|
20
|
+
class CardAccountUpdater(BaseModel):
|
21
|
+
r"""The results of the most recent card update request."""
|
22
|
+
|
23
|
+
updated_on: Annotated[Optional[datetime], pydantic.Field(alias="updatedOn")] = None
|
24
|
+
|
25
|
+
update_type: Annotated[
|
26
|
+
Optional[CardUpdateReason], pydantic.Field(alias="updateType")
|
27
|
+
] = None
|
28
|
+
r"""The results of the card update request."""
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .amount import Amount, AmountTypedDict
|
5
|
+
from datetime import datetime
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing_extensions import Annotated, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class CardAcquiringDisputeTypedDict(TypedDict):
|
12
|
+
r"""Details of a card dispute."""
|
13
|
+
|
14
|
+
dispute_id: str
|
15
|
+
created_on: datetime
|
16
|
+
amount: AmountTypedDict
|
17
|
+
|
18
|
+
|
19
|
+
class CardAcquiringDispute(BaseModel):
|
20
|
+
r"""Details of a card dispute."""
|
21
|
+
|
22
|
+
dispute_id: Annotated[str, pydantic.Field(alias="disputeID")]
|
23
|
+
|
24
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
25
|
+
|
26
|
+
amount: Amount
|
@@ -0,0 +1,11 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class CardAcquiringModel(str, Enum):
|
8
|
+
r"""Specifies the card processing pricing model"""
|
9
|
+
|
10
|
+
COST_PLUS = "cost-plus"
|
11
|
+
FLAT_RATE = "flat-rate"
|