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,67 @@
|
|
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 moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
6
|
+
import pydantic
|
7
|
+
from typing import Dict, List, Optional
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class InitiateMicroDepositsGlobalsTypedDict(TypedDict):
|
12
|
+
x_moov_version: NotRequired[str]
|
13
|
+
r"""Specify an API version.
|
14
|
+
|
15
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
16
|
+
- `YYYY` is the year
|
17
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
18
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
19
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
20
|
+
|
21
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
22
|
+
"""
|
23
|
+
|
24
|
+
|
25
|
+
class InitiateMicroDepositsGlobals(BaseModel):
|
26
|
+
x_moov_version: Annotated[
|
27
|
+
Optional[str],
|
28
|
+
pydantic.Field(alias="x-moov-version"),
|
29
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
30
|
+
] = "v2024.01.00"
|
31
|
+
r"""Specify an API version.
|
32
|
+
|
33
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
34
|
+
- `YYYY` is the year
|
35
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
36
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
37
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
38
|
+
|
39
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
40
|
+
"""
|
41
|
+
|
42
|
+
|
43
|
+
class InitiateMicroDepositsRequestTypedDict(TypedDict):
|
44
|
+
account_id: str
|
45
|
+
bank_account_id: str
|
46
|
+
|
47
|
+
|
48
|
+
class InitiateMicroDepositsRequest(BaseModel):
|
49
|
+
account_id: Annotated[
|
50
|
+
str,
|
51
|
+
pydantic.Field(alias="accountID"),
|
52
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
53
|
+
]
|
54
|
+
|
55
|
+
bank_account_id: Annotated[
|
56
|
+
str,
|
57
|
+
pydantic.Field(alias="bankAccountID"),
|
58
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
59
|
+
]
|
60
|
+
|
61
|
+
|
62
|
+
class InitiateMicroDepositsResponseTypedDict(TypedDict):
|
63
|
+
headers: Dict[str, List[str]]
|
64
|
+
|
65
|
+
|
66
|
+
class InitiateMicroDepositsResponse(BaseModel):
|
67
|
+
headers: Dict[str, List[str]]
|
@@ -0,0 +1,131 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
cardacquiringrefund as components_cardacquiringrefund,
|
6
|
+
createrefund as components_createrefund,
|
7
|
+
createrefundresponse as components_createrefundresponse,
|
8
|
+
transferwaitfor as components_transferwaitfor,
|
9
|
+
)
|
10
|
+
from moovio_sdk.types import BaseModel
|
11
|
+
from moovio_sdk.utils import (
|
12
|
+
FieldMetadata,
|
13
|
+
HeaderMetadata,
|
14
|
+
PathParamMetadata,
|
15
|
+
RequestMetadata,
|
16
|
+
)
|
17
|
+
import pydantic
|
18
|
+
from typing import Dict, List, Optional, Union
|
19
|
+
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
20
|
+
|
21
|
+
|
22
|
+
class InitiateRefundGlobalsTypedDict(TypedDict):
|
23
|
+
x_moov_version: NotRequired[str]
|
24
|
+
r"""Specify an API version.
|
25
|
+
|
26
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
27
|
+
- `YYYY` is the year
|
28
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
29
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
30
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
31
|
+
|
32
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
33
|
+
"""
|
34
|
+
|
35
|
+
|
36
|
+
class InitiateRefundGlobals(BaseModel):
|
37
|
+
x_moov_version: Annotated[
|
38
|
+
Optional[str],
|
39
|
+
pydantic.Field(alias="x-moov-version"),
|
40
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
41
|
+
] = "v2024.01.00"
|
42
|
+
r"""Specify an API version.
|
43
|
+
|
44
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
45
|
+
- `YYYY` is the year
|
46
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
47
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
48
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
49
|
+
|
50
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
51
|
+
"""
|
52
|
+
|
53
|
+
|
54
|
+
class InitiateRefundRequestTypedDict(TypedDict):
|
55
|
+
x_idempotency_key: str
|
56
|
+
r"""Prevents duplicate refunds from being created."""
|
57
|
+
account_id: str
|
58
|
+
r"""The merchant's Moov account ID."""
|
59
|
+
transfer_id: str
|
60
|
+
r"""Identifier for the transfer."""
|
61
|
+
x_wait_for: NotRequired[components_transferwaitfor.TransferWaitFor]
|
62
|
+
r"""Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
|
63
|
+
asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
|
64
|
+
"""
|
65
|
+
create_refund: NotRequired[components_createrefund.CreateRefundTypedDict]
|
66
|
+
|
67
|
+
|
68
|
+
class InitiateRefundRequest(BaseModel):
|
69
|
+
x_idempotency_key: Annotated[
|
70
|
+
str,
|
71
|
+
pydantic.Field(alias="x-idempotency-key"),
|
72
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
73
|
+
]
|
74
|
+
r"""Prevents duplicate refunds from being created."""
|
75
|
+
|
76
|
+
account_id: Annotated[
|
77
|
+
str,
|
78
|
+
pydantic.Field(alias="accountID"),
|
79
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
80
|
+
]
|
81
|
+
r"""The merchant's Moov account ID."""
|
82
|
+
|
83
|
+
transfer_id: Annotated[
|
84
|
+
str,
|
85
|
+
pydantic.Field(alias="transferID"),
|
86
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
87
|
+
]
|
88
|
+
r"""Identifier for the transfer."""
|
89
|
+
|
90
|
+
x_wait_for: Annotated[
|
91
|
+
Optional[components_transferwaitfor.TransferWaitFor],
|
92
|
+
pydantic.Field(alias="x-wait-for"),
|
93
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
94
|
+
] = None
|
95
|
+
r"""Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
|
96
|
+
asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
|
97
|
+
"""
|
98
|
+
|
99
|
+
create_refund: Annotated[
|
100
|
+
Optional[components_createrefund.CreateRefund],
|
101
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
102
|
+
] = None
|
103
|
+
|
104
|
+
|
105
|
+
InitiateRefundResponseResultTypedDict = TypeAliasType(
|
106
|
+
"InitiateRefundResponseResultTypedDict",
|
107
|
+
Union[
|
108
|
+
components_cardacquiringrefund.CardAcquiringRefundTypedDict,
|
109
|
+
components_createrefundresponse.CreateRefundResponseTypedDict,
|
110
|
+
],
|
111
|
+
)
|
112
|
+
|
113
|
+
|
114
|
+
InitiateRefundResponseResult = TypeAliasType(
|
115
|
+
"InitiateRefundResponseResult",
|
116
|
+
Union[
|
117
|
+
components_cardacquiringrefund.CardAcquiringRefund,
|
118
|
+
components_createrefundresponse.CreateRefundResponse,
|
119
|
+
],
|
120
|
+
)
|
121
|
+
|
122
|
+
|
123
|
+
class InitiateRefundResponseTypedDict(TypedDict):
|
124
|
+
headers: Dict[str, List[str]]
|
125
|
+
result: InitiateRefundResponseResultTypedDict
|
126
|
+
|
127
|
+
|
128
|
+
class InitiateRefundResponse(BaseModel):
|
129
|
+
headers: Dict[str, List[str]]
|
130
|
+
|
131
|
+
result: InitiateRefundResponseResult
|
@@ -0,0 +1,80 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
linkapplepay as components_linkapplepay,
|
6
|
+
linkedapplepaypaymentmethod as components_linkedapplepaypaymentmethod,
|
7
|
+
)
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
from moovio_sdk.utils import (
|
10
|
+
FieldMetadata,
|
11
|
+
HeaderMetadata,
|
12
|
+
PathParamMetadata,
|
13
|
+
RequestMetadata,
|
14
|
+
)
|
15
|
+
import pydantic
|
16
|
+
from typing import Dict, List, Optional
|
17
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
18
|
+
|
19
|
+
|
20
|
+
class LinkApplePayTokenGlobalsTypedDict(TypedDict):
|
21
|
+
x_moov_version: NotRequired[str]
|
22
|
+
r"""Specify an API version.
|
23
|
+
|
24
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
25
|
+
- `YYYY` is the year
|
26
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
27
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
28
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
29
|
+
|
30
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
31
|
+
"""
|
32
|
+
|
33
|
+
|
34
|
+
class LinkApplePayTokenGlobals(BaseModel):
|
35
|
+
x_moov_version: Annotated[
|
36
|
+
Optional[str],
|
37
|
+
pydantic.Field(alias="x-moov-version"),
|
38
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
39
|
+
] = "v2024.01.00"
|
40
|
+
r"""Specify an API version.
|
41
|
+
|
42
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
43
|
+
- `YYYY` is the year
|
44
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
45
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
46
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
47
|
+
|
48
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
49
|
+
"""
|
50
|
+
|
51
|
+
|
52
|
+
class LinkApplePayTokenRequestTypedDict(TypedDict):
|
53
|
+
account_id: str
|
54
|
+
r"""ID of the Moov account representing the cardholder."""
|
55
|
+
link_apple_pay: components_linkapplepay.LinkApplePayTypedDict
|
56
|
+
|
57
|
+
|
58
|
+
class LinkApplePayTokenRequest(BaseModel):
|
59
|
+
account_id: Annotated[
|
60
|
+
str,
|
61
|
+
pydantic.Field(alias="accountID"),
|
62
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
63
|
+
]
|
64
|
+
r"""ID of the Moov account representing the cardholder."""
|
65
|
+
|
66
|
+
link_apple_pay: Annotated[
|
67
|
+
components_linkapplepay.LinkApplePay,
|
68
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
69
|
+
]
|
70
|
+
|
71
|
+
|
72
|
+
class LinkApplePayTokenResponseTypedDict(TypedDict):
|
73
|
+
headers: Dict[str, List[str]]
|
74
|
+
result: components_linkedapplepaypaymentmethod.LinkedApplePayPaymentMethodTypedDict
|
75
|
+
|
76
|
+
|
77
|
+
class LinkApplePayTokenResponse(BaseModel):
|
78
|
+
headers: Dict[str, List[str]]
|
79
|
+
|
80
|
+
result: components_linkedapplepaypaymentmethod.LinkedApplePayPaymentMethod
|
@@ -0,0 +1,96 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
bankaccount as components_bankaccount,
|
6
|
+
bankaccountwaitfor as components_bankaccountwaitfor,
|
7
|
+
linkbankaccount as components_linkbankaccount,
|
8
|
+
)
|
9
|
+
from moovio_sdk.types import BaseModel
|
10
|
+
from moovio_sdk.utils import (
|
11
|
+
FieldMetadata,
|
12
|
+
HeaderMetadata,
|
13
|
+
PathParamMetadata,
|
14
|
+
RequestMetadata,
|
15
|
+
)
|
16
|
+
import pydantic
|
17
|
+
from typing import Dict, List, Optional
|
18
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
19
|
+
|
20
|
+
|
21
|
+
class LinkBankAccountGlobalsTypedDict(TypedDict):
|
22
|
+
x_moov_version: NotRequired[str]
|
23
|
+
r"""Specify an API version.
|
24
|
+
|
25
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
26
|
+
- `YYYY` is the year
|
27
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
28
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
29
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
30
|
+
|
31
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
32
|
+
"""
|
33
|
+
|
34
|
+
|
35
|
+
class LinkBankAccountGlobals(BaseModel):
|
36
|
+
x_moov_version: Annotated[
|
37
|
+
Optional[str],
|
38
|
+
pydantic.Field(alias="x-moov-version"),
|
39
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
40
|
+
] = "v2024.01.00"
|
41
|
+
r"""Specify an API version.
|
42
|
+
|
43
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
44
|
+
- `YYYY` is the year
|
45
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
46
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
47
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
48
|
+
|
49
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
50
|
+
"""
|
51
|
+
|
52
|
+
|
53
|
+
class LinkBankAccountRequestTypedDict(TypedDict):
|
54
|
+
account_id: str
|
55
|
+
link_bank_account: components_linkbankaccount.LinkBankAccountTypedDict
|
56
|
+
x_wait_for: NotRequired[components_bankaccountwaitfor.BankAccountWaitFor]
|
57
|
+
r"""Optional header to wait for certain events, such as the creation of a payment method, to occur before returning a response.
|
58
|
+
|
59
|
+
When this header is set to `payment-method`, the response will include any payment methods that were created for the newly
|
60
|
+
linked card in the `paymentMethods` field. Otherwise, the `paymentMethods` field will be omitted from the response.
|
61
|
+
"""
|
62
|
+
|
63
|
+
|
64
|
+
class LinkBankAccountRequest(BaseModel):
|
65
|
+
account_id: Annotated[
|
66
|
+
str,
|
67
|
+
pydantic.Field(alias="accountID"),
|
68
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
69
|
+
]
|
70
|
+
|
71
|
+
link_bank_account: Annotated[
|
72
|
+
components_linkbankaccount.LinkBankAccount,
|
73
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
74
|
+
]
|
75
|
+
|
76
|
+
x_wait_for: Annotated[
|
77
|
+
Optional[components_bankaccountwaitfor.BankAccountWaitFor],
|
78
|
+
pydantic.Field(alias="x-wait-for"),
|
79
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
80
|
+
] = None
|
81
|
+
r"""Optional header to wait for certain events, such as the creation of a payment method, to occur before returning a response.
|
82
|
+
|
83
|
+
When this header is set to `payment-method`, the response will include any payment methods that were created for the newly
|
84
|
+
linked card in the `paymentMethods` field. Otherwise, the `paymentMethods` field will be omitted from the response.
|
85
|
+
"""
|
86
|
+
|
87
|
+
|
88
|
+
class LinkBankAccountResponseTypedDict(TypedDict):
|
89
|
+
headers: Dict[str, List[str]]
|
90
|
+
result: components_bankaccount.BankAccountTypedDict
|
91
|
+
|
92
|
+
|
93
|
+
class LinkBankAccountResponse(BaseModel):
|
94
|
+
headers: Dict[str, List[str]]
|
95
|
+
|
96
|
+
result: components_bankaccount.BankAccount
|
@@ -0,0 +1,96 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
card as components_card,
|
6
|
+
linkcard as components_linkcard,
|
7
|
+
linkcardwaitfor as components_linkcardwaitfor,
|
8
|
+
)
|
9
|
+
from moovio_sdk.types import BaseModel
|
10
|
+
from moovio_sdk.utils import (
|
11
|
+
FieldMetadata,
|
12
|
+
HeaderMetadata,
|
13
|
+
PathParamMetadata,
|
14
|
+
RequestMetadata,
|
15
|
+
)
|
16
|
+
import pydantic
|
17
|
+
from typing import Dict, List, Optional
|
18
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
19
|
+
|
20
|
+
|
21
|
+
class LinkCardGlobalsTypedDict(TypedDict):
|
22
|
+
x_moov_version: NotRequired[str]
|
23
|
+
r"""Specify an API version.
|
24
|
+
|
25
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
26
|
+
- `YYYY` is the year
|
27
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
28
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
29
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
30
|
+
|
31
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
32
|
+
"""
|
33
|
+
|
34
|
+
|
35
|
+
class LinkCardGlobals(BaseModel):
|
36
|
+
x_moov_version: Annotated[
|
37
|
+
Optional[str],
|
38
|
+
pydantic.Field(alias="x-moov-version"),
|
39
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
40
|
+
] = "v2024.01.00"
|
41
|
+
r"""Specify an API version.
|
42
|
+
|
43
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
44
|
+
- `YYYY` is the year
|
45
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
46
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
47
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
48
|
+
|
49
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
50
|
+
"""
|
51
|
+
|
52
|
+
|
53
|
+
class LinkCardRequestTypedDict(TypedDict):
|
54
|
+
account_id: str
|
55
|
+
link_card: components_linkcard.LinkCardTypedDict
|
56
|
+
x_wait_for: NotRequired[components_linkcardwaitfor.LinkCardWaitFor]
|
57
|
+
r"""Optional header to wait for certain events, such as the creation of a payment method, to occur before returning a response.
|
58
|
+
|
59
|
+
When this header is set to `payment-method`, the response will include any payment methods that were created for the newly
|
60
|
+
linked card in the `paymentMethods` field. Otherwise, the `paymentMethods` field will be omitted from the response.
|
61
|
+
"""
|
62
|
+
|
63
|
+
|
64
|
+
class LinkCardRequest(BaseModel):
|
65
|
+
account_id: Annotated[
|
66
|
+
str,
|
67
|
+
pydantic.Field(alias="accountID"),
|
68
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
69
|
+
]
|
70
|
+
|
71
|
+
link_card: Annotated[
|
72
|
+
components_linkcard.LinkCard,
|
73
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
74
|
+
]
|
75
|
+
|
76
|
+
x_wait_for: Annotated[
|
77
|
+
Optional[components_linkcardwaitfor.LinkCardWaitFor],
|
78
|
+
pydantic.Field(alias="x-wait-for"),
|
79
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
80
|
+
] = None
|
81
|
+
r"""Optional header to wait for certain events, such as the creation of a payment method, to occur before returning a response.
|
82
|
+
|
83
|
+
When this header is set to `payment-method`, the response will include any payment methods that were created for the newly
|
84
|
+
linked card in the `paymentMethods` field. Otherwise, the `paymentMethods` field will be omitted from the response.
|
85
|
+
"""
|
86
|
+
|
87
|
+
|
88
|
+
class LinkCardResponseTypedDict(TypedDict):
|
89
|
+
headers: Dict[str, List[str]]
|
90
|
+
result: components_card.CardTypedDict
|
91
|
+
|
92
|
+
|
93
|
+
class LinkCardResponse(BaseModel):
|
94
|
+
headers: Dict[str, List[str]]
|
95
|
+
|
96
|
+
result: components_card.Card
|
@@ -0,0 +1,171 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
account as components_account,
|
6
|
+
accounttype as components_accounttype,
|
7
|
+
capabilityid as components_capabilityid,
|
8
|
+
capabilitystatus as components_capabilitystatus,
|
9
|
+
)
|
10
|
+
from moovio_sdk.types import BaseModel
|
11
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, QueryParamMetadata
|
12
|
+
import pydantic
|
13
|
+
from typing import Dict, List, Optional
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
15
|
+
|
16
|
+
|
17
|
+
class ListAccountsGlobalsTypedDict(TypedDict):
|
18
|
+
x_moov_version: NotRequired[str]
|
19
|
+
r"""Specify an API version.
|
20
|
+
|
21
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
22
|
+
- `YYYY` is the year
|
23
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
24
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
25
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
26
|
+
|
27
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
28
|
+
"""
|
29
|
+
|
30
|
+
|
31
|
+
class ListAccountsGlobals(BaseModel):
|
32
|
+
x_moov_version: Annotated[
|
33
|
+
Optional[str],
|
34
|
+
pydantic.Field(alias="x-moov-version"),
|
35
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
36
|
+
] = "v2024.01.00"
|
37
|
+
r"""Specify an API version.
|
38
|
+
|
39
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
40
|
+
- `YYYY` is the year
|
41
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
42
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
43
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
44
|
+
|
45
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
46
|
+
"""
|
47
|
+
|
48
|
+
|
49
|
+
class ListAccountsRequestTypedDict(TypedDict):
|
50
|
+
name: NotRequired[str]
|
51
|
+
r"""Filter connected accounts by name.
|
52
|
+
|
53
|
+
If provided, this query will attempt to find matches against the following Account and Profile fields:
|
54
|
+
<ul>
|
55
|
+
<li>Account `displayName`</li>
|
56
|
+
<li>Individual Profile `firstName`, `middleName`, and `lastName`</li>
|
57
|
+
<li>Business Profile `legalBusinessName`</li>
|
58
|
+
</ul>
|
59
|
+
"""
|
60
|
+
email: NotRequired[str]
|
61
|
+
r"""Filter connected accounts by email address.
|
62
|
+
|
63
|
+
Provide the full email address to filter by email.
|
64
|
+
"""
|
65
|
+
type: NotRequired[components_accounttype.AccountType]
|
66
|
+
r"""Filter connected accounts by AccountType.
|
67
|
+
|
68
|
+
If the `type` parameter is used in combination with `name`, only the corresponding type's name fields will
|
69
|
+
be searched. For example, if `type=business` and `name=moov`, the search will attempt to find matches against
|
70
|
+
the display name and Business Profile name fields (`legalBusinessName`, and `doingBusinessAs`).
|
71
|
+
"""
|
72
|
+
foreign_id: NotRequired[str]
|
73
|
+
r"""Serves as an optional alias from a foreign/external system which can be used to reference this resource."""
|
74
|
+
include_disconnected: NotRequired[bool]
|
75
|
+
r"""Filter disconnected accounts.
|
76
|
+
|
77
|
+
If true, the response will include disconnected accounts.
|
78
|
+
"""
|
79
|
+
capability: NotRequired[components_capabilityid.CapabilityID]
|
80
|
+
r"""Filter connected accounts by the capability."""
|
81
|
+
capability_status: NotRequired[components_capabilitystatus.CapabilityStatus]
|
82
|
+
r"""Filter connected accounts by the capability."""
|
83
|
+
skip: NotRequired[int]
|
84
|
+
count: NotRequired[int]
|
85
|
+
|
86
|
+
|
87
|
+
class ListAccountsRequest(BaseModel):
|
88
|
+
name: Annotated[
|
89
|
+
Optional[str],
|
90
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
91
|
+
] = None
|
92
|
+
r"""Filter connected accounts by name.
|
93
|
+
|
94
|
+
If provided, this query will attempt to find matches against the following Account and Profile fields:
|
95
|
+
<ul>
|
96
|
+
<li>Account `displayName`</li>
|
97
|
+
<li>Individual Profile `firstName`, `middleName`, and `lastName`</li>
|
98
|
+
<li>Business Profile `legalBusinessName`</li>
|
99
|
+
</ul>
|
100
|
+
"""
|
101
|
+
|
102
|
+
email: Annotated[
|
103
|
+
Optional[str],
|
104
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
105
|
+
] = None
|
106
|
+
r"""Filter connected accounts by email address.
|
107
|
+
|
108
|
+
Provide the full email address to filter by email.
|
109
|
+
"""
|
110
|
+
|
111
|
+
type: Annotated[
|
112
|
+
Optional[components_accounttype.AccountType],
|
113
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
114
|
+
] = None
|
115
|
+
r"""Filter connected accounts by AccountType.
|
116
|
+
|
117
|
+
If the `type` parameter is used in combination with `name`, only the corresponding type's name fields will
|
118
|
+
be searched. For example, if `type=business` and `name=moov`, the search will attempt to find matches against
|
119
|
+
the display name and Business Profile name fields (`legalBusinessName`, and `doingBusinessAs`).
|
120
|
+
"""
|
121
|
+
|
122
|
+
foreign_id: Annotated[
|
123
|
+
Optional[str],
|
124
|
+
pydantic.Field(alias="foreignID"),
|
125
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
126
|
+
] = None
|
127
|
+
r"""Serves as an optional alias from a foreign/external system which can be used to reference this resource."""
|
128
|
+
|
129
|
+
include_disconnected: Annotated[
|
130
|
+
Optional[bool],
|
131
|
+
pydantic.Field(alias="includeDisconnected"),
|
132
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
133
|
+
] = None
|
134
|
+
r"""Filter disconnected accounts.
|
135
|
+
|
136
|
+
If true, the response will include disconnected accounts.
|
137
|
+
"""
|
138
|
+
|
139
|
+
capability: Annotated[
|
140
|
+
Optional[components_capabilityid.CapabilityID],
|
141
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
142
|
+
] = None
|
143
|
+
r"""Filter connected accounts by the capability."""
|
144
|
+
|
145
|
+
capability_status: Annotated[
|
146
|
+
Optional[components_capabilitystatus.CapabilityStatus],
|
147
|
+
pydantic.Field(alias="capabilityStatus"),
|
148
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
149
|
+
] = None
|
150
|
+
r"""Filter connected accounts by the capability."""
|
151
|
+
|
152
|
+
skip: Annotated[
|
153
|
+
Optional[int],
|
154
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
155
|
+
] = None
|
156
|
+
|
157
|
+
count: Annotated[
|
158
|
+
Optional[int],
|
159
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
160
|
+
] = None
|
161
|
+
|
162
|
+
|
163
|
+
class ListAccountsResponseTypedDict(TypedDict):
|
164
|
+
headers: Dict[str, List[str]]
|
165
|
+
result: List[components_account.AccountTypedDict]
|
166
|
+
|
167
|
+
|
168
|
+
class ListAccountsResponse(BaseModel):
|
169
|
+
headers: Dict[str, List[str]]
|
170
|
+
|
171
|
+
result: List[components_account.Account]
|