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,36 @@
|
|
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 MoovFeeDetailsTypedDict(TypedDict):
|
11
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
12
|
+
|
13
|
+
moov_processing: str
|
14
|
+
r"""Moov processing fee. String type represents dollars with up to 9 decimal place precision."""
|
15
|
+
card_scheme: NotRequired[str]
|
16
|
+
r"""Card scheme fees accrued during authorization and settlement. String type represents dollars with up to 9 decimal place precision."""
|
17
|
+
interchange: NotRequired[str]
|
18
|
+
r"""Network interchange fee for Visa, Mastercard, or Discover. String type represents dollars with up to 9 decimal place precision."""
|
19
|
+
discount: NotRequired[str]
|
20
|
+
r"""Network discount fee for American Express. String type represents dollars with up to 9 decimal place precision."""
|
21
|
+
|
22
|
+
|
23
|
+
class MoovFeeDetails(BaseModel):
|
24
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
25
|
+
|
26
|
+
moov_processing: Annotated[str, pydantic.Field(alias="moovProcessing")]
|
27
|
+
r"""Moov processing fee. String type represents dollars with up to 9 decimal place precision."""
|
28
|
+
|
29
|
+
card_scheme: Annotated[Optional[str], pydantic.Field(alias="cardScheme")] = None
|
30
|
+
r"""Card scheme fees accrued during authorization and settlement. String type represents dollars with up to 9 decimal place precision."""
|
31
|
+
|
32
|
+
interchange: Optional[str] = None
|
33
|
+
r"""Network interchange fee for Visa, Mastercard, or Discover. String type represents dollars with up to 9 decimal place precision."""
|
34
|
+
|
35
|
+
discount: Optional[str] = None
|
36
|
+
r"""Network discount fee for American Express. String type represents dollars with up to 9 decimal place precision."""
|
@@ -0,0 +1,31 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .paymentmethodswallet import PaymentMethodsWallet, PaymentMethodsWalletTypedDict
|
5
|
+
from enum import Enum
|
6
|
+
from moovio_sdk.types import BaseModel
|
7
|
+
import pydantic
|
8
|
+
from typing_extensions import Annotated, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class MoovWalletPaymentMethodPaymentMethodType(str, Enum):
|
12
|
+
MOOV_WALLET = "moov-wallet"
|
13
|
+
|
14
|
+
|
15
|
+
class MoovWalletPaymentMethodTypedDict(TypedDict):
|
16
|
+
payment_method_id: str
|
17
|
+
r"""ID of the payment method."""
|
18
|
+
payment_method_type: MoovWalletPaymentMethodPaymentMethodType
|
19
|
+
wallet: PaymentMethodsWalletTypedDict
|
20
|
+
|
21
|
+
|
22
|
+
class MoovWalletPaymentMethod(BaseModel):
|
23
|
+
payment_method_id: Annotated[str, pydantic.Field(alias="paymentMethodID")]
|
24
|
+
r"""ID of the payment method."""
|
25
|
+
|
26
|
+
payment_method_type: Annotated[
|
27
|
+
MoovWalletPaymentMethodPaymentMethodType,
|
28
|
+
pydantic.Field(alias="paymentMethodType"),
|
29
|
+
]
|
30
|
+
|
31
|
+
wallet: PaymentMethodsWallet
|
@@ -0,0 +1,26 @@
|
|
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 MXAuthorizationCodeTypedDict(TypedDict):
|
10
|
+
r"""The authorization code of a MX account which allows a processor to retrieve a linked payment account.
|
11
|
+
|
12
|
+
`sandbox` - When linking a bank account to a `sandbox` account using a MX authorization code it will utilize MX's sandbox environment.
|
13
|
+
The MX authorization code provided must be generated from MX's sandbox environment.
|
14
|
+
"""
|
15
|
+
|
16
|
+
authorization_code: str
|
17
|
+
|
18
|
+
|
19
|
+
class MXAuthorizationCode(BaseModel):
|
20
|
+
r"""The authorization code of a MX account which allows a processor to retrieve a linked payment account.
|
21
|
+
|
22
|
+
`sandbox` - When linking a bank account to a `sandbox` account using a MX authorization code it will utilize MX's sandbox environment.
|
23
|
+
The MX authorization code provided must be generated from MX's sandbox environment.
|
24
|
+
"""
|
25
|
+
|
26
|
+
authorization_code: Annotated[str, pydantic.Field(alias="authorizationCode")]
|
@@ -0,0 +1,46 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .mxauthorizationcode import MXAuthorizationCode, MXAuthorizationCodeTypedDict
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
from typing_extensions import TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class MxPayloadTypedDict(TypedDict):
|
10
|
+
r"""Describes the account to link to the Moov account using a MX processor token.
|
11
|
+
|
12
|
+
`sandbox` - When linking a bank account to a `sandbox` account using an MX authorization token a default bank account routing number will
|
13
|
+
be used. The following default data will be used to generate the bank account in this flow:
|
14
|
+
|
15
|
+
```
|
16
|
+
RoutingNumber: \"123456780\",
|
17
|
+
BankName: \"Gringotts Bank\"
|
18
|
+
```
|
19
|
+
"""
|
20
|
+
|
21
|
+
mx: MXAuthorizationCodeTypedDict
|
22
|
+
r"""The authorization code of a MX account which allows a processor to retrieve a linked payment account.
|
23
|
+
|
24
|
+
`sandbox` - When linking a bank account to a `sandbox` account using a MX authorization code it will utilize MX's sandbox environment.
|
25
|
+
The MX authorization code provided must be generated from MX's sandbox environment.
|
26
|
+
"""
|
27
|
+
|
28
|
+
|
29
|
+
class MxPayload(BaseModel):
|
30
|
+
r"""Describes the account to link to the Moov account using a MX processor token.
|
31
|
+
|
32
|
+
`sandbox` - When linking a bank account to a `sandbox` account using an MX authorization token a default bank account routing number will
|
33
|
+
be used. The following default data will be used to generate the bank account in this flow:
|
34
|
+
|
35
|
+
```
|
36
|
+
RoutingNumber: \"123456780\",
|
37
|
+
BankName: \"Gringotts Bank\"
|
38
|
+
```
|
39
|
+
"""
|
40
|
+
|
41
|
+
mx: MXAuthorizationCode
|
42
|
+
r"""The authorization code of a MX account which allows a processor to retrieve a linked payment account.
|
43
|
+
|
44
|
+
`sandbox` - When linking a bank account to a `sandbox` account using a MX authorization code it will utilize MX's sandbox environment.
|
45
|
+
The MX authorization code provided must be generated from MX's sandbox environment.
|
46
|
+
"""
|
@@ -0,0 +1,44 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .runtransfer import RunTransfer, RunTransferTypedDict
|
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 OccurrenceTypedDict(TypedDict):
|
13
|
+
r"""Occurrences to either create or modify."""
|
14
|
+
|
15
|
+
canceled: NotRequired[bool]
|
16
|
+
r"""If set to true, will cancel the occurrence. If set false will resume the occurrence. If unset leaves the value unchanged."""
|
17
|
+
occurrence_id: NotRequired[str]
|
18
|
+
r"""If set this defines what occurrence to modify, if invalid will fail the request.
|
19
|
+
If null or \"\" it defines to add a new occurrence.
|
20
|
+
"""
|
21
|
+
run_on: NotRequired[datetime]
|
22
|
+
r"""Timestamp to run the transfer after. Value must be into the future."""
|
23
|
+
run_transfer: NotRequired[RunTransferTypedDict]
|
24
|
+
r"""Defines the attributes of a transfer."""
|
25
|
+
|
26
|
+
|
27
|
+
class Occurrence(BaseModel):
|
28
|
+
r"""Occurrences to either create or modify."""
|
29
|
+
|
30
|
+
canceled: Optional[bool] = None
|
31
|
+
r"""If set to true, will cancel the occurrence. If set false will resume the occurrence. If unset leaves the value unchanged."""
|
32
|
+
|
33
|
+
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
34
|
+
r"""If set this defines what occurrence to modify, if invalid will fail the request.
|
35
|
+
If null or \"\" it defines to add a new occurrence.
|
36
|
+
"""
|
37
|
+
|
38
|
+
run_on: Annotated[Optional[datetime], pydantic.Field(alias="runOn")] = None
|
39
|
+
r"""Timestamp to run the transfer after. Value must be into the future."""
|
40
|
+
|
41
|
+
run_transfer: Annotated[
|
42
|
+
Optional[RunTransfer], pydantic.Field(alias="runTransfer")
|
43
|
+
] = None
|
44
|
+
r"""Defines the attributes of a transfer."""
|
@@ -0,0 +1,80 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .mode import Mode
|
5
|
+
from .occurrencestatus import OccurrenceStatus
|
6
|
+
from .runtransfer import RunTransfer, RunTransferTypedDict
|
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 ErrorTypedDict(TypedDict):
|
15
|
+
r"""Contains details on why the occurrence errored."""
|
16
|
+
|
17
|
+
message: NotRequired[str]
|
18
|
+
|
19
|
+
|
20
|
+
class Error(BaseModel):
|
21
|
+
r"""Contains details on why the occurrence errored."""
|
22
|
+
|
23
|
+
message: Optional[str] = None
|
24
|
+
|
25
|
+
|
26
|
+
class OccurrencesResponseTypedDict(TypedDict):
|
27
|
+
run_on: datetime
|
28
|
+
run_transfer: RunTransferTypedDict
|
29
|
+
r"""Defines the attributes of a transfer."""
|
30
|
+
schedule_id: NotRequired[str]
|
31
|
+
occurrence_id: NotRequired[str]
|
32
|
+
mode: NotRequired[Mode]
|
33
|
+
r"""Sandbox or production account mode of this schedule."""
|
34
|
+
generated: NotRequired[bool]
|
35
|
+
r"""True if this was generated by a RRule."""
|
36
|
+
indefinite: NotRequired[bool]
|
37
|
+
r"""True if the RRule set runs indefinitely."""
|
38
|
+
canceled_on: NotRequired[datetime]
|
39
|
+
ran_on: NotRequired[datetime]
|
40
|
+
ran_transfer_id: NotRequired[str]
|
41
|
+
status: NotRequired[OccurrenceStatus]
|
42
|
+
r"""Status of the completed occurrence."""
|
43
|
+
error: NotRequired[ErrorTypedDict]
|
44
|
+
r"""Contains details on why the occurrence errored."""
|
45
|
+
|
46
|
+
|
47
|
+
class OccurrencesResponse(BaseModel):
|
48
|
+
run_on: Annotated[datetime, pydantic.Field(alias="runOn")]
|
49
|
+
|
50
|
+
run_transfer: Annotated[RunTransfer, pydantic.Field(alias="runTransfer")]
|
51
|
+
r"""Defines the attributes of a transfer."""
|
52
|
+
|
53
|
+
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
54
|
+
|
55
|
+
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
56
|
+
|
57
|
+
mode: Optional[Mode] = None
|
58
|
+
r"""Sandbox or production account mode of this schedule."""
|
59
|
+
|
60
|
+
generated: Optional[bool] = None
|
61
|
+
r"""True if this was generated by a RRule."""
|
62
|
+
|
63
|
+
indefinite: Optional[bool] = None
|
64
|
+
r"""True if the RRule set runs indefinitely."""
|
65
|
+
|
66
|
+
canceled_on: Annotated[Optional[datetime], pydantic.Field(alias="canceledOn")] = (
|
67
|
+
None
|
68
|
+
)
|
69
|
+
|
70
|
+
ran_on: Annotated[Optional[datetime], pydantic.Field(alias="ranOn")] = None
|
71
|
+
|
72
|
+
ran_transfer_id: Annotated[Optional[str], pydantic.Field(alias="ranTransferID")] = (
|
73
|
+
None
|
74
|
+
)
|
75
|
+
|
76
|
+
status: Optional[OccurrenceStatus] = None
|
77
|
+
r"""Status of the completed occurrence."""
|
78
|
+
|
79
|
+
error: Optional[Error] = None
|
80
|
+
r"""Contains details on why the occurrence errored."""
|
@@ -0,0 +1,12 @@
|
|
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 OccurrenceStatus(str, Enum):
|
8
|
+
r"""Status of the completed occurrence."""
|
9
|
+
|
10
|
+
PENDING = "pending"
|
11
|
+
FAILED = "failed"
|
12
|
+
COMPLETED = "completed"
|
@@ -0,0 +1,91 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .applicationscope import ApplicationScope
|
5
|
+
from .capabilityid import CapabilityID
|
6
|
+
from .createaccount import CreateAccount, CreateAccountTypedDict
|
7
|
+
from .onboardingpartneraccount import (
|
8
|
+
OnboardingPartnerAccount,
|
9
|
+
OnboardingPartnerAccountTypedDict,
|
10
|
+
)
|
11
|
+
from datetime import datetime
|
12
|
+
from moovio_sdk.types import BaseModel
|
13
|
+
import pydantic
|
14
|
+
from typing import List, Optional
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
16
|
+
|
17
|
+
|
18
|
+
class OnboardingInviteTypedDict(TypedDict):
|
19
|
+
code: str
|
20
|
+
r"""A unique code that identifies an onboarding invite."""
|
21
|
+
link: str
|
22
|
+
r"""A unique URL, including the invite code, that the recipient can follow to redeem the invitation."""
|
23
|
+
scopes: List[ApplicationScope]
|
24
|
+
r"""List of [scopes](https://docs.moov.io/api/authentication/scopes/) you request to use on this
|
25
|
+
account. These values are used to determine what can be done with the account onboarded.
|
26
|
+
"""
|
27
|
+
capabilities: List[CapabilityID]
|
28
|
+
r"""List of [capabilities](https://docs.moov.io/guides/accounts/capabilities/) you intend to request for this
|
29
|
+
account. These values are used to determine what information to collect from the user during onboarding.
|
30
|
+
"""
|
31
|
+
fee_plan_codes: List[str]
|
32
|
+
r"""List of fee plan codes to assign the account created by the invitee."""
|
33
|
+
created_on: datetime
|
34
|
+
return_url: NotRequired[str]
|
35
|
+
r"""The scopes requested by the inviter."""
|
36
|
+
terms_of_service_url: NotRequired[str]
|
37
|
+
r"""The terms of service URL set by the inviter."""
|
38
|
+
redeemed_account_id: NotRequired[str]
|
39
|
+
r"""The account ID of the account that redeemed the invite."""
|
40
|
+
prefill: NotRequired[CreateAccountTypedDict]
|
41
|
+
partner: NotRequired[OnboardingPartnerAccountTypedDict]
|
42
|
+
r"""The account that created the onboarding invite."""
|
43
|
+
revoked_on: NotRequired[datetime]
|
44
|
+
redeemed_on: NotRequired[datetime]
|
45
|
+
|
46
|
+
|
47
|
+
class OnboardingInvite(BaseModel):
|
48
|
+
code: str
|
49
|
+
r"""A unique code that identifies an onboarding invite."""
|
50
|
+
|
51
|
+
link: str
|
52
|
+
r"""A unique URL, including the invite code, that the recipient can follow to redeem the invitation."""
|
53
|
+
|
54
|
+
scopes: List[ApplicationScope]
|
55
|
+
r"""List of [scopes](https://docs.moov.io/api/authentication/scopes/) you request to use on this
|
56
|
+
account. These values are used to determine what can be done with the account onboarded.
|
57
|
+
"""
|
58
|
+
|
59
|
+
capabilities: List[CapabilityID]
|
60
|
+
r"""List of [capabilities](https://docs.moov.io/guides/accounts/capabilities/) you intend to request for this
|
61
|
+
account. These values are used to determine what information to collect from the user during onboarding.
|
62
|
+
"""
|
63
|
+
|
64
|
+
fee_plan_codes: Annotated[List[str], pydantic.Field(alias="feePlanCodes")]
|
65
|
+
r"""List of fee plan codes to assign the account created by the invitee."""
|
66
|
+
|
67
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
68
|
+
|
69
|
+
return_url: Annotated[Optional[str], pydantic.Field(alias="returnURL")] = None
|
70
|
+
r"""The scopes requested by the inviter."""
|
71
|
+
|
72
|
+
terms_of_service_url: Annotated[
|
73
|
+
Optional[str], pydantic.Field(alias="termsOfServiceURL")
|
74
|
+
] = None
|
75
|
+
r"""The terms of service URL set by the inviter."""
|
76
|
+
|
77
|
+
redeemed_account_id: Annotated[
|
78
|
+
Optional[str], pydantic.Field(alias="redeemedAccountID")
|
79
|
+
] = None
|
80
|
+
r"""The account ID of the account that redeemed the invite."""
|
81
|
+
|
82
|
+
prefill: Optional[CreateAccount] = None
|
83
|
+
|
84
|
+
partner: Optional[OnboardingPartnerAccount] = None
|
85
|
+
r"""The account that created the onboarding invite."""
|
86
|
+
|
87
|
+
revoked_on: Annotated[Optional[datetime], pydantic.Field(alias="revokedOn")] = None
|
88
|
+
|
89
|
+
redeemed_on: Annotated[Optional[datetime], pydantic.Field(alias="redeemedOn")] = (
|
90
|
+
None
|
91
|
+
)
|
@@ -0,0 +1,57 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .applicationscope import ApplicationScope
|
5
|
+
from .capabilityid import CapabilityID
|
6
|
+
from .createaccount import CreateAccount, CreateAccountTypedDict
|
7
|
+
from moovio_sdk.types import BaseModel
|
8
|
+
import pydantic
|
9
|
+
from typing import List, Optional
|
10
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
11
|
+
|
12
|
+
|
13
|
+
class OnboardingInviteRequestTypedDict(TypedDict):
|
14
|
+
r"""Request to create an onboarding invite."""
|
15
|
+
|
16
|
+
scopes: List[ApplicationScope]
|
17
|
+
r"""List of [scopes](https://docs.moov.io/api/authentication/scopes/) you request to use on this
|
18
|
+
account. These values are used to determine what can be done with the account onboarded.
|
19
|
+
"""
|
20
|
+
capabilities: List[CapabilityID]
|
21
|
+
r"""List of [capabilities](https://docs.moov.io/guides/accounts/capabilities/) you intend to request for this
|
22
|
+
account. These values are used to determine what information to collect from the user during onboarding.
|
23
|
+
"""
|
24
|
+
fee_plan_codes: List[str]
|
25
|
+
r"""List of fee plan codes to assign the account created by the invitee."""
|
26
|
+
return_url: NotRequired[str]
|
27
|
+
r"""Optional URL to redirect the user to after they complete the onboarding process."""
|
28
|
+
terms_of_service_url: NotRequired[str]
|
29
|
+
r"""Optional URL to your organization's terms of service."""
|
30
|
+
prefill: NotRequired[CreateAccountTypedDict]
|
31
|
+
|
32
|
+
|
33
|
+
class OnboardingInviteRequest(BaseModel):
|
34
|
+
r"""Request to create an onboarding invite."""
|
35
|
+
|
36
|
+
scopes: List[ApplicationScope]
|
37
|
+
r"""List of [scopes](https://docs.moov.io/api/authentication/scopes/) you request to use on this
|
38
|
+
account. These values are used to determine what can be done with the account onboarded.
|
39
|
+
"""
|
40
|
+
|
41
|
+
capabilities: List[CapabilityID]
|
42
|
+
r"""List of [capabilities](https://docs.moov.io/guides/accounts/capabilities/) you intend to request for this
|
43
|
+
account. These values are used to determine what information to collect from the user during onboarding.
|
44
|
+
"""
|
45
|
+
|
46
|
+
fee_plan_codes: Annotated[List[str], pydantic.Field(alias="feePlanCodes")]
|
47
|
+
r"""List of fee plan codes to assign the account created by the invitee."""
|
48
|
+
|
49
|
+
return_url: Annotated[Optional[str], pydantic.Field(alias="returnURL")] = None
|
50
|
+
r"""Optional URL to redirect the user to after they complete the onboarding process."""
|
51
|
+
|
52
|
+
terms_of_service_url: Annotated[
|
53
|
+
Optional[str], pydantic.Field(alias="termsOfServiceURL")
|
54
|
+
] = None
|
55
|
+
r"""Optional URL to your organization's terms of service."""
|
56
|
+
|
57
|
+
prefill: Optional[CreateAccount] = None
|
@@ -0,0 +1,31 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .mode import Mode
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
import pydantic
|
7
|
+
from typing_extensions import Annotated, TypedDict
|
8
|
+
|
9
|
+
|
10
|
+
class OnboardingPartnerAccountTypedDict(TypedDict):
|
11
|
+
r"""The account that created the onboarding invite."""
|
12
|
+
|
13
|
+
account_id: str
|
14
|
+
r"""The account ID of the partner that created the invite."""
|
15
|
+
account_mode: Mode
|
16
|
+
r"""The operating mode for an account."""
|
17
|
+
display_name: str
|
18
|
+
r"""The name of the Moov account used to create the onboarding invite."""
|
19
|
+
|
20
|
+
|
21
|
+
class OnboardingPartnerAccount(BaseModel):
|
22
|
+
r"""The account that created the onboarding invite."""
|
23
|
+
|
24
|
+
account_id: Annotated[str, pydantic.Field(alias="accountID")]
|
25
|
+
r"""The account ID of the partner that created the invite."""
|
26
|
+
|
27
|
+
account_mode: Annotated[Mode, pydantic.Field(alias="accountMode")]
|
28
|
+
r"""The operating mode for an account."""
|
29
|
+
|
30
|
+
display_name: Annotated[str, pydantic.Field(alias="displayName")]
|
31
|
+
r"""The name of the Moov account used to create the onboarding invite."""
|
@@ -0,0 +1,46 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .billablefee import BillableFee, BillableFeeTypedDict
|
5
|
+
from .cardacquiringmodel import CardAcquiringModel
|
6
|
+
from datetime import datetime
|
7
|
+
from moovio_sdk.types import BaseModel
|
8
|
+
import pydantic
|
9
|
+
from typing import List, Optional
|
10
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
11
|
+
|
12
|
+
|
13
|
+
class PartnerPricingTypedDict(TypedDict):
|
14
|
+
plan_id: str
|
15
|
+
name: str
|
16
|
+
r"""The name of the fee plan."""
|
17
|
+
revenue_share: int
|
18
|
+
r"""The integer percentage value of the revenue split for partner."""
|
19
|
+
card_acquiring_model: CardAcquiringModel
|
20
|
+
r"""Specifies the card processing pricing model"""
|
21
|
+
billable_fees: List[BillableFeeTypedDict]
|
22
|
+
created_at: datetime
|
23
|
+
description: NotRequired[str]
|
24
|
+
r"""A description of the fee plan."""
|
25
|
+
|
26
|
+
|
27
|
+
class PartnerPricing(BaseModel):
|
28
|
+
plan_id: Annotated[str, pydantic.Field(alias="planID")]
|
29
|
+
|
30
|
+
name: str
|
31
|
+
r"""The name of the fee plan."""
|
32
|
+
|
33
|
+
revenue_share: Annotated[int, pydantic.Field(alias="revenueShare")]
|
34
|
+
r"""The integer percentage value of the revenue split for partner."""
|
35
|
+
|
36
|
+
card_acquiring_model: Annotated[
|
37
|
+
CardAcquiringModel, pydantic.Field(alias="cardAcquiringModel")
|
38
|
+
]
|
39
|
+
r"""Specifies the card processing pricing model"""
|
40
|
+
|
41
|
+
billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
|
42
|
+
|
43
|
+
created_at: Annotated[datetime, pydantic.Field(alias="createdAt")]
|
44
|
+
|
45
|
+
description: Optional[str] = None
|
46
|
+
r"""A description of the fee plan."""
|
@@ -0,0 +1,56 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .billablefee import BillableFee, BillableFeeTypedDict
|
5
|
+
from .cardacquiringmodel import CardAcquiringModel
|
6
|
+
from .feeplanagreementstatus import FeePlanAgreementStatus
|
7
|
+
from datetime import datetime
|
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 PartnerPricingAgreementTypedDict(TypedDict):
|
15
|
+
agreement_id: str
|
16
|
+
plan_id: str
|
17
|
+
name: str
|
18
|
+
r"""The name of the agreement."""
|
19
|
+
accepted_on: datetime
|
20
|
+
status: FeePlanAgreementStatus
|
21
|
+
card_acquiring_model: CardAcquiringModel
|
22
|
+
r"""Specifies the card processing pricing model"""
|
23
|
+
billable_fees: List[BillableFeeTypedDict]
|
24
|
+
revenue_share: int
|
25
|
+
r"""The integer percentage value of the revenue split for partner."""
|
26
|
+
account_id: NotRequired[str]
|
27
|
+
description: NotRequired[str]
|
28
|
+
r"""The description of the agreement."""
|
29
|
+
|
30
|
+
|
31
|
+
class PartnerPricingAgreement(BaseModel):
|
32
|
+
agreement_id: Annotated[str, pydantic.Field(alias="agreementID")]
|
33
|
+
|
34
|
+
plan_id: Annotated[str, pydantic.Field(alias="planID")]
|
35
|
+
|
36
|
+
name: str
|
37
|
+
r"""The name of the agreement."""
|
38
|
+
|
39
|
+
accepted_on: Annotated[datetime, pydantic.Field(alias="acceptedOn")]
|
40
|
+
|
41
|
+
status: FeePlanAgreementStatus
|
42
|
+
|
43
|
+
card_acquiring_model: Annotated[
|
44
|
+
CardAcquiringModel, pydantic.Field(alias="cardAcquiringModel")
|
45
|
+
]
|
46
|
+
r"""Specifies the card processing pricing model"""
|
47
|
+
|
48
|
+
billable_fees: Annotated[List[BillableFee], pydantic.Field(alias="billableFees")]
|
49
|
+
|
50
|
+
revenue_share: Annotated[int, pydantic.Field(alias="revenueShare")]
|
51
|
+
r"""The integer percentage value of the revenue split for partner."""
|
52
|
+
|
53
|
+
account_id: Annotated[Optional[str], pydantic.Field(alias="accountID")] = None
|
54
|
+
|
55
|
+
description: Optional[str] = None
|
56
|
+
r"""The description of the agreement."""
|