moovio_sdk 0.11.6__py3-none-any.whl → 0.13.0__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/_version.py +3 -3
- moovio_sdk/account_terminal_applications.py +70 -186
- moovio_sdk/accounts.py +168 -408
- moovio_sdk/adjustments.py +28 -84
- moovio_sdk/apple_pay.py +102 -236
- moovio_sdk/authentication.py +50 -102
- moovio_sdk/avatars.py +10 -38
- moovio_sdk/bank_accounts.py +174 -420
- moovio_sdk/basesdk.py +4 -4
- moovio_sdk/branding.py +106 -198
- moovio_sdk/capabilities.py +76 -180
- moovio_sdk/card_issuing.py +94 -228
- moovio_sdk/cards.py +94 -232
- moovio_sdk/disputes.py +204 -500
- moovio_sdk/end_to_end_encryption.py +28 -80
- moovio_sdk/enriched_address.py +14 -44
- moovio_sdk/enriched_profile.py +14 -44
- moovio_sdk/fee_plans.py +116 -314
- moovio_sdk/files.py +52 -138
- moovio_sdk/industries.py +14 -44
- moovio_sdk/institutions.py +36 -92
- moovio_sdk/issuing_transactions.py +70 -220
- moovio_sdk/models/components/__init__.py +244 -0
- moovio_sdk/models/components/businesspresence.py +13 -0
- moovio_sdk/models/components/cardacceptancemethods.py +37 -0
- moovio_sdk/models/components/cardacceptancemethodserror.py +27 -0
- moovio_sdk/models/components/collectfunds.py +25 -0
- moovio_sdk/models/components/collectfundsach.py +18 -0
- moovio_sdk/models/components/collectfundsacherror.py +21 -0
- moovio_sdk/models/components/collectfundscardpayments.py +41 -0
- moovio_sdk/models/components/collectfundscardpaymentserror.py +43 -0
- moovio_sdk/models/components/collectfundserror.py +25 -0
- moovio_sdk/models/components/createdtransfer.py +5 -0
- moovio_sdk/models/components/createticket.py +24 -0
- moovio_sdk/models/components/createticketcontacterror.py +17 -0
- moovio_sdk/models/components/createtransfer.py +5 -0
- moovio_sdk/models/components/estimatedactivity.py +30 -0
- moovio_sdk/models/components/estimatedactivityerror.py +27 -0
- moovio_sdk/models/components/fulfillment.py +19 -0
- moovio_sdk/models/components/fulfillmenterror.py +17 -0
- moovio_sdk/models/components/fulfillmentmethod.py +16 -0
- moovio_sdk/models/components/fulfillmenttimeframe.py +15 -0
- moovio_sdk/models/components/geographicreach.py +10 -0
- moovio_sdk/models/components/moneytransfer.py +30 -0
- moovio_sdk/models/components/moneytransfererror.py +30 -0
- moovio_sdk/models/components/moneytransferpullfromcard.py +18 -0
- moovio_sdk/models/components/moneytransferpullfromcarderror.py +21 -0
- moovio_sdk/models/components/moneytransferpushtocard.py +18 -0
- moovio_sdk/models/components/moneytransferpushtocarderror.py +21 -0
- moovio_sdk/models/components/monthlyvolumerange.py +17 -0
- moovio_sdk/models/components/pendinglitigation.py +17 -0
- moovio_sdk/models/components/refundpolicy.py +16 -0
- moovio_sdk/models/components/sendfunds.py +26 -0
- moovio_sdk/models/components/sendfundsach.py +18 -0
- moovio_sdk/models/components/sendfundsacherror.py +21 -0
- moovio_sdk/models/components/sendfundserror.py +29 -0
- moovio_sdk/models/components/sendfundspushtocard.py +18 -0
- moovio_sdk/models/components/sendfundspushtocarderror.py +21 -0
- moovio_sdk/models/components/sendfundsrtp.py +18 -0
- moovio_sdk/models/components/sendfundsrtperror.py +21 -0
- moovio_sdk/models/components/ticket.py +44 -0
- moovio_sdk/models/components/ticketcontact.py +17 -0
- moovio_sdk/models/components/ticketmessage.py +21 -0
- moovio_sdk/models/components/ticketstatus.py +11 -0
- moovio_sdk/models/components/transfer.py +5 -0
- moovio_sdk/models/components/underwriting.py +67 -20
- moovio_sdk/models/components/updateticket.py +19 -0
- moovio_sdk/models/components/updateticketstatus.py +8 -0
- moovio_sdk/models/components/upsertunderwriting.py +56 -0
- moovio_sdk/models/components/volumesharebycustomertype.py +20 -0
- moovio_sdk/models/components/volumesharebycustomertypeerror.py +20 -0
- moovio_sdk/models/components/webhookdata.py +10 -10
- moovio_sdk/models/components/webhookdatatransfercreated.py +5 -1
- moovio_sdk/models/components/webhookdatatransferupdated.py +5 -1
- moovio_sdk/models/errors/__init__.py +27 -0
- moovio_sdk/models/errors/accountterminalapplicationerror.py +11 -6
- moovio_sdk/models/errors/addcapabilitieserror.py +11 -6
- moovio_sdk/models/errors/apierror.py +30 -14
- moovio_sdk/models/errors/assigncountrieserror.py +12 -6
- moovio_sdk/models/errors/authtokenrequesterror.py +11 -6
- moovio_sdk/models/errors/bankaccountvalidationerror.py +11 -6
- moovio_sdk/models/errors/brandvalidationerror.py +11 -6
- moovio_sdk/models/errors/cardacquiringrefund.py +11 -6
- moovio_sdk/models/errors/createaccount.py +12 -6
- moovio_sdk/models/errors/createpaymentlinkerror.py +11 -6
- moovio_sdk/models/errors/createsweepconfigerror.py +11 -6
- moovio_sdk/models/errors/createticketerror.py +34 -0
- moovio_sdk/models/errors/feeplanagreementerror.py +11 -6
- moovio_sdk/models/errors/fileuploadvalidationerror.py +11 -6
- moovio_sdk/models/errors/filevalidationerror.py +11 -6
- moovio_sdk/models/errors/genericerror.py +12 -6
- moovio_sdk/models/errors/linkapplepayerror.py +11 -6
- moovio_sdk/models/errors/linkcarderror.py +11 -6
- moovio_sdk/models/errors/microdepositvalidationerror.py +11 -6
- moovio_sdk/models/errors/mooverror.py +26 -0
- moovio_sdk/models/errors/no_response_error.py +13 -0
- moovio_sdk/models/errors/onboardinginviteerror.py +11 -6
- moovio_sdk/models/errors/patchsweepconfigerror.py +11 -6
- moovio_sdk/models/errors/refundvalidationerror.py +11 -6
- moovio_sdk/models/errors/representativevalidationerror.py +11 -6
- moovio_sdk/models/errors/requestcarderror.py +11 -6
- moovio_sdk/models/errors/responsevalidationerror.py +25 -0
- moovio_sdk/models/errors/reversalvalidationerror.py +11 -6
- moovio_sdk/models/errors/revoketokenrequesterror.py +11 -6
- moovio_sdk/models/errors/schedulevalidationerror.py +11 -6
- moovio_sdk/models/errors/terminalapplicationerror.py +11 -6
- moovio_sdk/models/errors/transfer.py +14 -6
- moovio_sdk/models/errors/transferoptionsvalidationerror.py +11 -6
- moovio_sdk/models/errors/transfervalidationerror.py +11 -6
- moovio_sdk/models/errors/updateaccount.py +12 -6
- moovio_sdk/models/errors/updatecarderror.py +11 -6
- moovio_sdk/models/errors/updateissuedcarderror.py +11 -6
- moovio_sdk/models/errors/updatepaymentlinkerror.py +11 -6
- moovio_sdk/models/errors/updateticketerror.py +25 -0
- moovio_sdk/models/errors/updateunderwritingerror.py +11 -6
- moovio_sdk/models/errors/upsertunderwritingerror.py +94 -0
- moovio_sdk/models/operations/__init__.py +120 -0
- moovio_sdk/models/operations/createticket.py +78 -0
- moovio_sdk/models/operations/getticket.py +71 -0
- moovio_sdk/models/operations/listticketmessages.py +88 -0
- moovio_sdk/models/operations/listtickets.py +81 -0
- moovio_sdk/models/operations/listtransfers.py +9 -0
- moovio_sdk/models/operations/saveunderwriting.py +78 -0
- moovio_sdk/models/operations/updateticket.py +85 -0
- moovio_sdk/onboarding.py +66 -166
- moovio_sdk/payment_links.py +106 -272
- moovio_sdk/payment_methods.py +30 -86
- moovio_sdk/ping.py +10 -40
- moovio_sdk/receipts.py +36 -92
- moovio_sdk/representatives.py +102 -228
- moovio_sdk/scheduling.py +122 -278
- moovio_sdk/sdk.py +3 -0
- moovio_sdk/support.py +1153 -0
- moovio_sdk/sweeps.py +102 -274
- moovio_sdk/terminal_applications.py +74 -186
- moovio_sdk/transfers.py +278 -582
- moovio_sdk/underwriting.py +378 -92
- moovio_sdk/utils/__init__.py +3 -0
- moovio_sdk/utils/serializers.py +21 -3
- moovio_sdk/wallet_transactions.py +28 -88
- moovio_sdk/wallets.py +24 -84
- {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.13.0.dist-info}/METADATA +109 -28
- {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.13.0.dist-info}/RECORD +144 -87
- {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.13.0.dist-info}/WHEEL +0 -0
@@ -126,6 +126,7 @@ if TYPE_CHECKING:
|
|
126
126
|
BrandColorValidationErrorTypedDict,
|
127
127
|
)
|
128
128
|
from .brandproperties import BrandProperties, BrandPropertiesTypedDict
|
129
|
+
from .businesspresence import BusinessPresence
|
129
130
|
from .businessprofile import BusinessProfile, BusinessProfileTypedDict
|
130
131
|
from .businesstype import BusinessType
|
131
132
|
from .calltoaction import CallToAction
|
@@ -140,6 +141,14 @@ if TYPE_CHECKING:
|
|
140
141
|
)
|
141
142
|
from .capabilitystatus import CapabilityStatus
|
142
143
|
from .card import Card, CardTypedDict
|
144
|
+
from .cardacceptancemethods import (
|
145
|
+
CardAcceptanceMethods,
|
146
|
+
CardAcceptanceMethodsTypedDict,
|
147
|
+
)
|
148
|
+
from .cardacceptancemethodserror import (
|
149
|
+
CardAcceptanceMethodsError,
|
150
|
+
CardAcceptanceMethodsErrorTypedDict,
|
151
|
+
)
|
143
152
|
from .cardaccountupdater import CardAccountUpdater, CardAccountUpdaterTypedDict
|
144
153
|
from .cardacquiringdispute import (
|
145
154
|
CardAcquiringDispute,
|
@@ -186,6 +195,21 @@ if TYPE_CHECKING:
|
|
186
195
|
CardVolumeDistributionError,
|
187
196
|
CardVolumeDistributionErrorTypedDict,
|
188
197
|
)
|
198
|
+
from .collectfunds import CollectFunds, CollectFundsTypedDict
|
199
|
+
from .collectfundsach import CollectFundsAch, CollectFundsAchTypedDict
|
200
|
+
from .collectfundsacherror import (
|
201
|
+
CollectFundsAchError,
|
202
|
+
CollectFundsAchErrorTypedDict,
|
203
|
+
)
|
204
|
+
from .collectfundscardpayments import (
|
205
|
+
CollectFundsCardPayments,
|
206
|
+
CollectFundsCardPaymentsTypedDict,
|
207
|
+
)
|
208
|
+
from .collectfundscardpaymentserror import (
|
209
|
+
CollectFundsCardPaymentsError,
|
210
|
+
CollectFundsCardPaymentsErrorTypedDict,
|
211
|
+
)
|
212
|
+
from .collectfundserror import CollectFundsError, CollectFundsErrorTypedDict
|
189
213
|
from .collectionpaymentmethodtype import CollectionPaymentMethodType
|
190
214
|
from .colorsvalidationerror import (
|
191
215
|
ColorsValidationError,
|
@@ -295,6 +319,11 @@ if TYPE_CHECKING:
|
|
295
319
|
CreateTerminalApplication,
|
296
320
|
CreateTerminalApplicationTypedDict,
|
297
321
|
)
|
322
|
+
from .createticket import CreateTicket, CreateTicketTypedDict
|
323
|
+
from .createticketcontacterror import (
|
324
|
+
CreateTicketContactError,
|
325
|
+
CreateTicketContactErrorTypedDict,
|
326
|
+
)
|
298
327
|
from .createtransfer import CreateTransfer, CreateTransferTypedDict
|
299
328
|
from .createtransferdestination import (
|
300
329
|
CreateTransferDestination,
|
@@ -371,6 +400,11 @@ if TYPE_CHECKING:
|
|
371
400
|
EnrichedIndustryCodesTypedDict,
|
372
401
|
)
|
373
402
|
from .entrymode import EntryMode
|
403
|
+
from .estimatedactivity import EstimatedActivity, EstimatedActivityTypedDict
|
404
|
+
from .estimatedactivityerror import (
|
405
|
+
EstimatedActivityError,
|
406
|
+
EstimatedActivityErrorTypedDict,
|
407
|
+
)
|
374
408
|
from .evidencetextresponse import (
|
375
409
|
EvidenceTextResponse,
|
376
410
|
EvidenceTextResponseTypedDict,
|
@@ -400,11 +434,15 @@ if TYPE_CHECKING:
|
|
400
434
|
FinancialInstitutions,
|
401
435
|
FinancialInstitutionsTypedDict,
|
402
436
|
)
|
437
|
+
from .fulfillment import Fulfillment, FulfillmentTypedDict
|
403
438
|
from .fulfillmentdetails import FulfillmentDetails, FulfillmentDetailsTypedDict
|
404
439
|
from .fulfillmentdetailserror import (
|
405
440
|
FulfillmentDetailsError,
|
406
441
|
FulfillmentDetailsErrorTypedDict,
|
407
442
|
)
|
443
|
+
from .fulfillmenterror import FulfillmentError, FulfillmentErrorTypedDict
|
444
|
+
from .fulfillmentmethod import FulfillmentMethod
|
445
|
+
from .fulfillmenttimeframe import FulfillmentTimeframe
|
408
446
|
from .fullissuedcard import FullIssuedCard, FullIssuedCardTypedDict
|
409
447
|
from .generatedby import GeneratedBy, GeneratedByTypedDict
|
410
448
|
from .generatedbyaccountid import (
|
@@ -424,6 +462,7 @@ if TYPE_CHECKING:
|
|
424
462
|
GeneratedByTransferID,
|
425
463
|
GeneratedByTransferIDTypedDict,
|
426
464
|
)
|
465
|
+
from .geographicreach import GeographicReach
|
427
466
|
from .governmentid import (
|
428
467
|
GovernmentID,
|
429
468
|
GovernmentIDTypedDict,
|
@@ -526,7 +565,26 @@ if TYPE_CHECKING:
|
|
526
565
|
from .microdepositstatus import MicroDepositStatus
|
527
566
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
528
567
|
from .mode import Mode
|
568
|
+
from .moneytransfer import MoneyTransfer, MoneyTransferTypedDict
|
569
|
+
from .moneytransfererror import MoneyTransferError, MoneyTransferErrorTypedDict
|
570
|
+
from .moneytransferpullfromcard import (
|
571
|
+
MoneyTransferPullFromCard,
|
572
|
+
MoneyTransferPullFromCardTypedDict,
|
573
|
+
)
|
574
|
+
from .moneytransferpullfromcarderror import (
|
575
|
+
MoneyTransferPullFromCardError,
|
576
|
+
MoneyTransferPullFromCardErrorTypedDict,
|
577
|
+
)
|
578
|
+
from .moneytransferpushtocard import (
|
579
|
+
MoneyTransferPushToCard,
|
580
|
+
MoneyTransferPushToCardTypedDict,
|
581
|
+
)
|
582
|
+
from .moneytransferpushtocarderror import (
|
583
|
+
MoneyTransferPushToCardError,
|
584
|
+
MoneyTransferPushToCardErrorTypedDict,
|
585
|
+
)
|
529
586
|
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
587
|
+
from .monthlyvolumerange import MonthlyVolumeRange
|
530
588
|
from .moovfee import MoovFee, MoovFeeTypedDict
|
531
589
|
from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
|
532
590
|
from .moovwalletpaymentmethod import (
|
@@ -644,6 +702,7 @@ if TYPE_CHECKING:
|
|
644
702
|
PayoutRecipientUpdate,
|
645
703
|
PayoutRecipientUpdateTypedDict,
|
646
704
|
)
|
705
|
+
from .pendinglitigation import PendingLitigation
|
647
706
|
from .phonenumber import PhoneNumber, PhoneNumberTypedDict
|
648
707
|
from .phonenumbererror import PhoneNumberError, PhoneNumberErrorTypedDict
|
649
708
|
from .plaidintegration import PlaidIntegration, PlaidIntegrationTypedDict
|
@@ -672,6 +731,7 @@ if TYPE_CHECKING:
|
|
672
731
|
from .recur import Recur, RecurTypedDict
|
673
732
|
from .refundcarddetails import RefundCardDetails, RefundCardDetailsTypedDict
|
674
733
|
from .refundcardstatus import RefundCardStatus
|
734
|
+
from .refundpolicy import RefundPolicy
|
675
735
|
from .refundstatus import RefundStatus
|
676
736
|
from .registerapplepaymerchantdomains import (
|
677
737
|
RegisterApplePayMerchantDomains,
|
@@ -732,6 +792,17 @@ if TYPE_CHECKING:
|
|
732
792
|
from .scheduleresponse import ScheduleResponse, ScheduleResponseTypedDict
|
733
793
|
from .seccode import SECCode
|
734
794
|
from .security import Security, SecurityTypedDict
|
795
|
+
from .sendfunds import SendFunds, SendFundsTypedDict
|
796
|
+
from .sendfundsach import SendFundsAch, SendFundsAchTypedDict
|
797
|
+
from .sendfundsacherror import SendFundsAchError, SendFundsAchErrorTypedDict
|
798
|
+
from .sendfundserror import SendFundsError, SendFundsErrorTypedDict
|
799
|
+
from .sendfundspushtocard import SendFundsPushToCard, SendFundsPushToCardTypedDict
|
800
|
+
from .sendfundspushtocarderror import (
|
801
|
+
SendFundsPushToCardError,
|
802
|
+
SendFundsPushToCardErrorTypedDict,
|
803
|
+
)
|
804
|
+
from .sendfundsrtp import SendFundsRtp, SendFundsRtpTypedDict
|
805
|
+
from .sendfundsrtperror import SendFundsRtpError, SendFundsRtpErrorTypedDict
|
735
806
|
from .sentreceipt import SentReceipt, SentReceiptTypedDict
|
736
807
|
from .settings import Settings, SettingsTypedDict
|
737
808
|
from .sourcedestinationoptions import (
|
@@ -774,6 +845,10 @@ if TYPE_CHECKING:
|
|
774
845
|
TermsOfServiceTokenUpdate,
|
775
846
|
TermsOfServiceTokenUpdateTypedDict,
|
776
847
|
)
|
848
|
+
from .ticket import Ticket, TicketTypedDict
|
849
|
+
from .ticketcontact import TicketContact, TicketContactTypedDict
|
850
|
+
from .ticketmessage import TicketMessage, TicketMessageTypedDict
|
851
|
+
from .ticketstatus import TicketStatus
|
777
852
|
from .tokentype import TokenType
|
778
853
|
from .transactionsource import TransactionSource
|
779
854
|
from .transfer import Transfer, TransferTypedDict
|
@@ -825,8 +900,11 @@ if TYPE_CHECKING:
|
|
825
900
|
UpdateRepresentativeSsnTypedDict,
|
826
901
|
UpdateRepresentativeTypedDict,
|
827
902
|
)
|
903
|
+
from .updateticket import UpdateTicket, UpdateTicketTypedDict
|
904
|
+
from .updateticketstatus import UpdateTicketStatus
|
828
905
|
from .updateunderwriting import UpdateUnderwriting, UpdateUnderwritingTypedDict
|
829
906
|
from .upsertschedule import UpsertSchedule, UpsertScheduleTypedDict
|
907
|
+
from .upsertunderwriting import UpsertUnderwriting, UpsertUnderwritingTypedDict
|
830
908
|
from .verification import Verification, VerificationTypedDict
|
831
909
|
from .verificationstatus import VerificationStatus
|
832
910
|
from .verificationstatusdetail import VerificationStatusDetail
|
@@ -838,6 +916,14 @@ if TYPE_CHECKING:
|
|
838
916
|
VolumeByCustomerTypeError,
|
839
917
|
VolumeByCustomerTypeErrorTypedDict,
|
840
918
|
)
|
919
|
+
from .volumesharebycustomertype import (
|
920
|
+
VolumeShareByCustomerType,
|
921
|
+
VolumeShareByCustomerTypeTypedDict,
|
922
|
+
)
|
923
|
+
from .volumesharebycustomertypeerror import (
|
924
|
+
VolumeShareByCustomerTypeError,
|
925
|
+
VolumeShareByCustomerTypeErrorTypedDict,
|
926
|
+
)
|
841
927
|
from .wallet import Wallet, WalletTypedDict
|
842
928
|
from .walletavailablebalance import (
|
843
929
|
WalletAvailableBalance,
|
@@ -1100,6 +1186,7 @@ __all__ = [
|
|
1100
1186
|
"BrandColorsTypedDict",
|
1101
1187
|
"BrandProperties",
|
1102
1188
|
"BrandPropertiesTypedDict",
|
1189
|
+
"BusinessPresence",
|
1103
1190
|
"BusinessProfile",
|
1104
1191
|
"BusinessProfileTypedDict",
|
1105
1192
|
"BusinessType",
|
@@ -1116,6 +1203,10 @@ __all__ = [
|
|
1116
1203
|
"CapabilityStatus",
|
1117
1204
|
"CapabilityTypedDict",
|
1118
1205
|
"Card",
|
1206
|
+
"CardAcceptanceMethods",
|
1207
|
+
"CardAcceptanceMethodsError",
|
1208
|
+
"CardAcceptanceMethodsErrorTypedDict",
|
1209
|
+
"CardAcceptanceMethodsTypedDict",
|
1119
1210
|
"CardAccountUpdater",
|
1120
1211
|
"CardAccountUpdaterTypedDict",
|
1121
1212
|
"CardAcquiringDispute",
|
@@ -1161,6 +1252,18 @@ __all__ = [
|
|
1161
1252
|
"CardVolumeDistributionError",
|
1162
1253
|
"CardVolumeDistributionErrorTypedDict",
|
1163
1254
|
"CardVolumeDistributionTypedDict",
|
1255
|
+
"CollectFunds",
|
1256
|
+
"CollectFundsAch",
|
1257
|
+
"CollectFundsAchError",
|
1258
|
+
"CollectFundsAchErrorTypedDict",
|
1259
|
+
"CollectFundsAchTypedDict",
|
1260
|
+
"CollectFundsCardPayments",
|
1261
|
+
"CollectFundsCardPaymentsError",
|
1262
|
+
"CollectFundsCardPaymentsErrorTypedDict",
|
1263
|
+
"CollectFundsCardPaymentsTypedDict",
|
1264
|
+
"CollectFundsError",
|
1265
|
+
"CollectFundsErrorTypedDict",
|
1266
|
+
"CollectFundsTypedDict",
|
1164
1267
|
"CollectionPaymentMethodType",
|
1165
1268
|
"ColorsValidationError",
|
1166
1269
|
"ColorsValidationErrorTypedDict",
|
@@ -1235,6 +1338,10 @@ __all__ = [
|
|
1235
1338
|
"CreateSweepConfigTypedDict",
|
1236
1339
|
"CreateTerminalApplication",
|
1237
1340
|
"CreateTerminalApplicationTypedDict",
|
1341
|
+
"CreateTicket",
|
1342
|
+
"CreateTicketContactError",
|
1343
|
+
"CreateTicketContactErrorTypedDict",
|
1344
|
+
"CreateTicketTypedDict",
|
1238
1345
|
"CreateTransfer",
|
1239
1346
|
"CreateTransferDestination",
|
1240
1347
|
"CreateTransferDestinationACH",
|
@@ -1297,6 +1404,10 @@ __all__ = [
|
|
1297
1404
|
"EntryMode",
|
1298
1405
|
"Error",
|
1299
1406
|
"ErrorTypedDict",
|
1407
|
+
"EstimatedActivity",
|
1408
|
+
"EstimatedActivityError",
|
1409
|
+
"EstimatedActivityErrorTypedDict",
|
1410
|
+
"EstimatedActivityTypedDict",
|
1300
1411
|
"EvidenceTextResponse",
|
1301
1412
|
"EvidenceTextResponseTypedDict",
|
1302
1413
|
"EvidenceType",
|
@@ -1325,10 +1436,16 @@ __all__ = [
|
|
1325
1436
|
"FileUploadRequestMultiPartTypedDict",
|
1326
1437
|
"FinancialInstitutions",
|
1327
1438
|
"FinancialInstitutionsTypedDict",
|
1439
|
+
"Fulfillment",
|
1328
1440
|
"FulfillmentDetails",
|
1329
1441
|
"FulfillmentDetailsError",
|
1330
1442
|
"FulfillmentDetailsErrorTypedDict",
|
1331
1443
|
"FulfillmentDetailsTypedDict",
|
1444
|
+
"FulfillmentError",
|
1445
|
+
"FulfillmentErrorTypedDict",
|
1446
|
+
"FulfillmentMethod",
|
1447
|
+
"FulfillmentTimeframe",
|
1448
|
+
"FulfillmentTypedDict",
|
1332
1449
|
"FullIssuedCard",
|
1333
1450
|
"FullIssuedCardTypedDict",
|
1334
1451
|
"GeneratedBy",
|
@@ -1343,6 +1460,7 @@ __all__ = [
|
|
1343
1460
|
"GeneratedByTransferID",
|
1344
1461
|
"GeneratedByTransferIDTypedDict",
|
1345
1462
|
"GeneratedByTypedDict",
|
1463
|
+
"GeographicReach",
|
1346
1464
|
"GovernmentID",
|
1347
1465
|
"GovernmentIDError",
|
1348
1466
|
"GovernmentIDErrorItin",
|
@@ -1431,8 +1549,21 @@ __all__ = [
|
|
1431
1549
|
"MinimumCommitment",
|
1432
1550
|
"MinimumCommitmentTypedDict",
|
1433
1551
|
"Mode",
|
1552
|
+
"MoneyTransfer",
|
1553
|
+
"MoneyTransferError",
|
1554
|
+
"MoneyTransferErrorTypedDict",
|
1555
|
+
"MoneyTransferPullFromCard",
|
1556
|
+
"MoneyTransferPullFromCardError",
|
1557
|
+
"MoneyTransferPullFromCardErrorTypedDict",
|
1558
|
+
"MoneyTransferPullFromCardTypedDict",
|
1559
|
+
"MoneyTransferPushToCard",
|
1560
|
+
"MoneyTransferPushToCardError",
|
1561
|
+
"MoneyTransferPushToCardErrorTypedDict",
|
1562
|
+
"MoneyTransferPushToCardTypedDict",
|
1563
|
+
"MoneyTransferTypedDict",
|
1434
1564
|
"MonthlyPlatformFee",
|
1435
1565
|
"MonthlyPlatformFeeTypedDict",
|
1566
|
+
"MonthlyVolumeRange",
|
1436
1567
|
"MoovFee",
|
1437
1568
|
"MoovFeeDetails",
|
1438
1569
|
"MoovFeeDetailsTypedDict",
|
@@ -1513,6 +1644,7 @@ __all__ = [
|
|
1513
1644
|
"PayoutRecipientTypedDict",
|
1514
1645
|
"PayoutRecipientUpdate",
|
1515
1646
|
"PayoutRecipientUpdateTypedDict",
|
1647
|
+
"PendingLitigation",
|
1516
1648
|
"Phone",
|
1517
1649
|
"PhoneNumber",
|
1518
1650
|
"PhoneNumberError",
|
@@ -1565,6 +1697,7 @@ __all__ = [
|
|
1565
1697
|
"RefundCardDetails",
|
1566
1698
|
"RefundCardDetailsTypedDict",
|
1567
1699
|
"RefundCardStatus",
|
1700
|
+
"RefundPolicy",
|
1568
1701
|
"RefundStatus",
|
1569
1702
|
"RegisterApplePayMerchantDomains",
|
1570
1703
|
"RegisterApplePayMerchantDomainsTypedDict",
|
@@ -1605,6 +1738,22 @@ __all__ = [
|
|
1605
1738
|
"ScheduleResponseTypedDict",
|
1606
1739
|
"Security",
|
1607
1740
|
"SecurityTypedDict",
|
1741
|
+
"SendFunds",
|
1742
|
+
"SendFundsAch",
|
1743
|
+
"SendFundsAchError",
|
1744
|
+
"SendFundsAchErrorTypedDict",
|
1745
|
+
"SendFundsAchTypedDict",
|
1746
|
+
"SendFundsError",
|
1747
|
+
"SendFundsErrorTypedDict",
|
1748
|
+
"SendFundsPushToCard",
|
1749
|
+
"SendFundsPushToCardError",
|
1750
|
+
"SendFundsPushToCardErrorTypedDict",
|
1751
|
+
"SendFundsPushToCardTypedDict",
|
1752
|
+
"SendFundsRtp",
|
1753
|
+
"SendFundsRtpError",
|
1754
|
+
"SendFundsRtpErrorTypedDict",
|
1755
|
+
"SendFundsRtpTypedDict",
|
1756
|
+
"SendFundsTypedDict",
|
1608
1757
|
"SentReceipt",
|
1609
1758
|
"SentReceiptTypedDict",
|
1610
1759
|
"Settings",
|
@@ -1650,6 +1799,13 @@ __all__ = [
|
|
1650
1799
|
"TermsOfServiceTokenUpdate",
|
1651
1800
|
"TermsOfServiceTokenUpdateTypedDict",
|
1652
1801
|
"TermsOfServiceTypedDict",
|
1802
|
+
"Ticket",
|
1803
|
+
"TicketContact",
|
1804
|
+
"TicketContactTypedDict",
|
1805
|
+
"TicketMessage",
|
1806
|
+
"TicketMessageTypedDict",
|
1807
|
+
"TicketStatus",
|
1808
|
+
"TicketTypedDict",
|
1653
1809
|
"TokenType",
|
1654
1810
|
"TokenTypeHint",
|
1655
1811
|
"TransactionSource",
|
@@ -1704,10 +1860,15 @@ __all__ = [
|
|
1704
1860
|
"UpdateRepresentativeSsn",
|
1705
1861
|
"UpdateRepresentativeSsnTypedDict",
|
1706
1862
|
"UpdateRepresentativeTypedDict",
|
1863
|
+
"UpdateTicket",
|
1864
|
+
"UpdateTicketStatus",
|
1865
|
+
"UpdateTicketTypedDict",
|
1707
1866
|
"UpdateUnderwriting",
|
1708
1867
|
"UpdateUnderwritingTypedDict",
|
1709
1868
|
"UpsertSchedule",
|
1710
1869
|
"UpsertScheduleTypedDict",
|
1870
|
+
"UpsertUnderwriting",
|
1871
|
+
"UpsertUnderwritingTypedDict",
|
1711
1872
|
"Use",
|
1712
1873
|
"Verification",
|
1713
1874
|
"VerificationStatus",
|
@@ -1717,6 +1878,10 @@ __all__ = [
|
|
1717
1878
|
"VolumeByCustomerTypeError",
|
1718
1879
|
"VolumeByCustomerTypeErrorTypedDict",
|
1719
1880
|
"VolumeByCustomerTypeTypedDict",
|
1881
|
+
"VolumeShareByCustomerType",
|
1882
|
+
"VolumeShareByCustomerTypeError",
|
1883
|
+
"VolumeShareByCustomerTypeErrorTypedDict",
|
1884
|
+
"VolumeShareByCustomerTypeTypedDict",
|
1720
1885
|
"Wallet",
|
1721
1886
|
"WalletAvailableBalance",
|
1722
1887
|
"WalletAvailableBalanceTypedDict",
|
@@ -1922,6 +2087,7 @@ _dynamic_imports: dict[str, str] = {
|
|
1922
2087
|
"BrandColorValidationErrorTypedDict": ".brandcolorvalidationerror",
|
1923
2088
|
"BrandProperties": ".brandproperties",
|
1924
2089
|
"BrandPropertiesTypedDict": ".brandproperties",
|
2090
|
+
"BusinessPresence": ".businesspresence",
|
1925
2091
|
"BusinessProfile": ".businessprofile",
|
1926
2092
|
"BusinessProfileTypedDict": ".businessprofile",
|
1927
2093
|
"BusinessType": ".businesstype",
|
@@ -1939,6 +2105,10 @@ _dynamic_imports: dict[str, str] = {
|
|
1939
2105
|
"CapabilityStatus": ".capabilitystatus",
|
1940
2106
|
"Card": ".card",
|
1941
2107
|
"CardTypedDict": ".card",
|
2108
|
+
"CardAcceptanceMethods": ".cardacceptancemethods",
|
2109
|
+
"CardAcceptanceMethodsTypedDict": ".cardacceptancemethods",
|
2110
|
+
"CardAcceptanceMethodsError": ".cardacceptancemethodserror",
|
2111
|
+
"CardAcceptanceMethodsErrorTypedDict": ".cardacceptancemethodserror",
|
1942
2112
|
"CardAccountUpdater": ".cardaccountupdater",
|
1943
2113
|
"CardAccountUpdaterTypedDict": ".cardaccountupdater",
|
1944
2114
|
"CardAcquiringDispute": ".cardacquiringdispute",
|
@@ -1979,6 +2149,18 @@ _dynamic_imports: dict[str, str] = {
|
|
1979
2149
|
"CardVolumeDistributionTypedDict": ".cardvolumedistribution",
|
1980
2150
|
"CardVolumeDistributionError": ".cardvolumedistributionerror",
|
1981
2151
|
"CardVolumeDistributionErrorTypedDict": ".cardvolumedistributionerror",
|
2152
|
+
"CollectFunds": ".collectfunds",
|
2153
|
+
"CollectFundsTypedDict": ".collectfunds",
|
2154
|
+
"CollectFundsAch": ".collectfundsach",
|
2155
|
+
"CollectFundsAchTypedDict": ".collectfundsach",
|
2156
|
+
"CollectFundsAchError": ".collectfundsacherror",
|
2157
|
+
"CollectFundsAchErrorTypedDict": ".collectfundsacherror",
|
2158
|
+
"CollectFundsCardPayments": ".collectfundscardpayments",
|
2159
|
+
"CollectFundsCardPaymentsTypedDict": ".collectfundscardpayments",
|
2160
|
+
"CollectFundsCardPaymentsError": ".collectfundscardpaymentserror",
|
2161
|
+
"CollectFundsCardPaymentsErrorTypedDict": ".collectfundscardpaymentserror",
|
2162
|
+
"CollectFundsError": ".collectfundserror",
|
2163
|
+
"CollectFundsErrorTypedDict": ".collectfundserror",
|
1982
2164
|
"CollectionPaymentMethodType": ".collectionpaymentmethodtype",
|
1983
2165
|
"ColorsValidationError": ".colorsvalidationerror",
|
1984
2166
|
"ColorsValidationErrorTypedDict": ".colorsvalidationerror",
|
@@ -2061,6 +2243,10 @@ _dynamic_imports: dict[str, str] = {
|
|
2061
2243
|
"CreateSweepConfigTypedDict": ".createsweepconfig",
|
2062
2244
|
"CreateTerminalApplication": ".createterminalapplication",
|
2063
2245
|
"CreateTerminalApplicationTypedDict": ".createterminalapplication",
|
2246
|
+
"CreateTicket": ".createticket",
|
2247
|
+
"CreateTicketTypedDict": ".createticket",
|
2248
|
+
"CreateTicketContactError": ".createticketcontacterror",
|
2249
|
+
"CreateTicketContactErrorTypedDict": ".createticketcontacterror",
|
2064
2250
|
"CreateTransfer": ".createtransfer",
|
2065
2251
|
"CreateTransferTypedDict": ".createtransfer",
|
2066
2252
|
"CreateTransferDestination": ".createtransferdestination",
|
@@ -2115,6 +2301,10 @@ _dynamic_imports: dict[str, str] = {
|
|
2115
2301
|
"EnrichedIndustryCodes": ".enrichedindustrycodes",
|
2116
2302
|
"EnrichedIndustryCodesTypedDict": ".enrichedindustrycodes",
|
2117
2303
|
"EntryMode": ".entrymode",
|
2304
|
+
"EstimatedActivity": ".estimatedactivity",
|
2305
|
+
"EstimatedActivityTypedDict": ".estimatedactivity",
|
2306
|
+
"EstimatedActivityError": ".estimatedactivityerror",
|
2307
|
+
"EstimatedActivityErrorTypedDict": ".estimatedactivityerror",
|
2118
2308
|
"EvidenceTextResponse": ".evidencetextresponse",
|
2119
2309
|
"EvidenceTextResponseTypedDict": ".evidencetextresponse",
|
2120
2310
|
"EvidenceType": ".evidencetype",
|
@@ -2141,10 +2331,16 @@ _dynamic_imports: dict[str, str] = {
|
|
2141
2331
|
"FileUploadRequestMultiPartTypedDict": ".fileuploadrequestmultipart",
|
2142
2332
|
"FinancialInstitutions": ".financialinstitutions",
|
2143
2333
|
"FinancialInstitutionsTypedDict": ".financialinstitutions",
|
2334
|
+
"Fulfillment": ".fulfillment",
|
2335
|
+
"FulfillmentTypedDict": ".fulfillment",
|
2144
2336
|
"FulfillmentDetails": ".fulfillmentdetails",
|
2145
2337
|
"FulfillmentDetailsTypedDict": ".fulfillmentdetails",
|
2146
2338
|
"FulfillmentDetailsError": ".fulfillmentdetailserror",
|
2147
2339
|
"FulfillmentDetailsErrorTypedDict": ".fulfillmentdetailserror",
|
2340
|
+
"FulfillmentError": ".fulfillmenterror",
|
2341
|
+
"FulfillmentErrorTypedDict": ".fulfillmenterror",
|
2342
|
+
"FulfillmentMethod": ".fulfillmentmethod",
|
2343
|
+
"FulfillmentTimeframe": ".fulfillmenttimeframe",
|
2148
2344
|
"FullIssuedCard": ".fullissuedcard",
|
2149
2345
|
"FullIssuedCardTypedDict": ".fullissuedcard",
|
2150
2346
|
"GeneratedBy": ".generatedby",
|
@@ -2159,6 +2355,7 @@ _dynamic_imports: dict[str, str] = {
|
|
2159
2355
|
"GeneratedByDisputeIDTypedDict": ".generatedbydisputeid",
|
2160
2356
|
"GeneratedByTransferID": ".generatedbytransferid",
|
2161
2357
|
"GeneratedByTransferIDTypedDict": ".generatedbytransferid",
|
2358
|
+
"GeographicReach": ".geographicreach",
|
2162
2359
|
"GovernmentID": ".governmentid",
|
2163
2360
|
"GovernmentIDTypedDict": ".governmentid",
|
2164
2361
|
"Itin": ".governmentid",
|
@@ -2244,8 +2441,21 @@ _dynamic_imports: dict[str, str] = {
|
|
2244
2441
|
"MinimumCommitment": ".minimumcommitment",
|
2245
2442
|
"MinimumCommitmentTypedDict": ".minimumcommitment",
|
2246
2443
|
"Mode": ".mode",
|
2444
|
+
"MoneyTransfer": ".moneytransfer",
|
2445
|
+
"MoneyTransferTypedDict": ".moneytransfer",
|
2446
|
+
"MoneyTransferError": ".moneytransfererror",
|
2447
|
+
"MoneyTransferErrorTypedDict": ".moneytransfererror",
|
2448
|
+
"MoneyTransferPullFromCard": ".moneytransferpullfromcard",
|
2449
|
+
"MoneyTransferPullFromCardTypedDict": ".moneytransferpullfromcard",
|
2450
|
+
"MoneyTransferPullFromCardError": ".moneytransferpullfromcarderror",
|
2451
|
+
"MoneyTransferPullFromCardErrorTypedDict": ".moneytransferpullfromcarderror",
|
2452
|
+
"MoneyTransferPushToCard": ".moneytransferpushtocard",
|
2453
|
+
"MoneyTransferPushToCardTypedDict": ".moneytransferpushtocard",
|
2454
|
+
"MoneyTransferPushToCardError": ".moneytransferpushtocarderror",
|
2455
|
+
"MoneyTransferPushToCardErrorTypedDict": ".moneytransferpushtocarderror",
|
2247
2456
|
"MonthlyPlatformFee": ".monthlyplatformfee",
|
2248
2457
|
"MonthlyPlatformFeeTypedDict": ".monthlyplatformfee",
|
2458
|
+
"MonthlyVolumeRange": ".monthlyvolumerange",
|
2249
2459
|
"MoovFee": ".moovfee",
|
2250
2460
|
"MoovFeeTypedDict": ".moovfee",
|
2251
2461
|
"MoovFeeDetails": ".moovfeedetails",
|
@@ -2343,6 +2553,7 @@ _dynamic_imports: dict[str, str] = {
|
|
2343
2553
|
"PayoutRecipientErrorTypedDict": ".payoutrecipienterror",
|
2344
2554
|
"PayoutRecipientUpdate": ".payoutrecipientupdate",
|
2345
2555
|
"PayoutRecipientUpdateTypedDict": ".payoutrecipientupdate",
|
2556
|
+
"PendingLitigation": ".pendinglitigation",
|
2346
2557
|
"PhoneNumber": ".phonenumber",
|
2347
2558
|
"PhoneNumberTypedDict": ".phonenumber",
|
2348
2559
|
"PhoneNumberError": ".phonenumbererror",
|
@@ -2376,6 +2587,7 @@ _dynamic_imports: dict[str, str] = {
|
|
2376
2587
|
"RefundCardDetails": ".refundcarddetails",
|
2377
2588
|
"RefundCardDetailsTypedDict": ".refundcarddetails",
|
2378
2589
|
"RefundCardStatus": ".refundcardstatus",
|
2590
|
+
"RefundPolicy": ".refundpolicy",
|
2379
2591
|
"RefundStatus": ".refundstatus",
|
2380
2592
|
"RegisterApplePayMerchantDomains": ".registerapplepaymerchantdomains",
|
2381
2593
|
"RegisterApplePayMerchantDomainsTypedDict": ".registerapplepaymerchantdomains",
|
@@ -2428,6 +2640,22 @@ _dynamic_imports: dict[str, str] = {
|
|
2428
2640
|
"SECCode": ".seccode",
|
2429
2641
|
"Security": ".security",
|
2430
2642
|
"SecurityTypedDict": ".security",
|
2643
|
+
"SendFunds": ".sendfunds",
|
2644
|
+
"SendFundsTypedDict": ".sendfunds",
|
2645
|
+
"SendFundsAch": ".sendfundsach",
|
2646
|
+
"SendFundsAchTypedDict": ".sendfundsach",
|
2647
|
+
"SendFundsAchError": ".sendfundsacherror",
|
2648
|
+
"SendFundsAchErrorTypedDict": ".sendfundsacherror",
|
2649
|
+
"SendFundsError": ".sendfundserror",
|
2650
|
+
"SendFundsErrorTypedDict": ".sendfundserror",
|
2651
|
+
"SendFundsPushToCard": ".sendfundspushtocard",
|
2652
|
+
"SendFundsPushToCardTypedDict": ".sendfundspushtocard",
|
2653
|
+
"SendFundsPushToCardError": ".sendfundspushtocarderror",
|
2654
|
+
"SendFundsPushToCardErrorTypedDict": ".sendfundspushtocarderror",
|
2655
|
+
"SendFundsRtp": ".sendfundsrtp",
|
2656
|
+
"SendFundsRtpTypedDict": ".sendfundsrtp",
|
2657
|
+
"SendFundsRtpError": ".sendfundsrtperror",
|
2658
|
+
"SendFundsRtpErrorTypedDict": ".sendfundsrtperror",
|
2431
2659
|
"SentReceipt": ".sentreceipt",
|
2432
2660
|
"SentReceiptTypedDict": ".sentreceipt",
|
2433
2661
|
"Settings": ".settings",
|
@@ -2470,6 +2698,13 @@ _dynamic_imports: dict[str, str] = {
|
|
2470
2698
|
"TermsOfServiceTokenTypedDict": ".termsofservicetoken",
|
2471
2699
|
"TermsOfServiceTokenUpdate": ".termsofservicetokenupdate",
|
2472
2700
|
"TermsOfServiceTokenUpdateTypedDict": ".termsofservicetokenupdate",
|
2701
|
+
"Ticket": ".ticket",
|
2702
|
+
"TicketTypedDict": ".ticket",
|
2703
|
+
"TicketContact": ".ticketcontact",
|
2704
|
+
"TicketContactTypedDict": ".ticketcontact",
|
2705
|
+
"TicketMessage": ".ticketmessage",
|
2706
|
+
"TicketMessageTypedDict": ".ticketmessage",
|
2707
|
+
"TicketStatus": ".ticketstatus",
|
2473
2708
|
"TokenType": ".tokentype",
|
2474
2709
|
"TransactionSource": ".transactionsource",
|
2475
2710
|
"Transfer": ".transfer",
|
@@ -2529,10 +2764,15 @@ _dynamic_imports: dict[str, str] = {
|
|
2529
2764
|
"UpdateRepresentativeSsn": ".updaterepresentative",
|
2530
2765
|
"UpdateRepresentativeSsnTypedDict": ".updaterepresentative",
|
2531
2766
|
"UpdateRepresentativeTypedDict": ".updaterepresentative",
|
2767
|
+
"UpdateTicket": ".updateticket",
|
2768
|
+
"UpdateTicketTypedDict": ".updateticket",
|
2769
|
+
"UpdateTicketStatus": ".updateticketstatus",
|
2532
2770
|
"UpdateUnderwriting": ".updateunderwriting",
|
2533
2771
|
"UpdateUnderwritingTypedDict": ".updateunderwriting",
|
2534
2772
|
"UpsertSchedule": ".upsertschedule",
|
2535
2773
|
"UpsertScheduleTypedDict": ".upsertschedule",
|
2774
|
+
"UpsertUnderwriting": ".upsertunderwriting",
|
2775
|
+
"UpsertUnderwritingTypedDict": ".upsertunderwriting",
|
2536
2776
|
"Verification": ".verification",
|
2537
2777
|
"VerificationTypedDict": ".verification",
|
2538
2778
|
"VerificationStatus": ".verificationstatus",
|
@@ -2541,6 +2781,10 @@ _dynamic_imports: dict[str, str] = {
|
|
2541
2781
|
"VolumeByCustomerTypeTypedDict": ".volumebycustomertype",
|
2542
2782
|
"VolumeByCustomerTypeError": ".volumebycustomertypeerror",
|
2543
2783
|
"VolumeByCustomerTypeErrorTypedDict": ".volumebycustomertypeerror",
|
2784
|
+
"VolumeShareByCustomerType": ".volumesharebycustomertype",
|
2785
|
+
"VolumeShareByCustomerTypeTypedDict": ".volumesharebycustomertype",
|
2786
|
+
"VolumeShareByCustomerTypeError": ".volumesharebycustomertypeerror",
|
2787
|
+
"VolumeShareByCustomerTypeErrorTypedDict": ".volumesharebycustomertypeerror",
|
2544
2788
|
"Wallet": ".wallet",
|
2545
2789
|
"WalletTypedDict": ".wallet",
|
2546
2790
|
"WalletAvailableBalance": ".walletavailablebalance",
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from enum import Enum
|
5
|
+
|
6
|
+
|
7
|
+
class BusinessPresence(str, Enum):
|
8
|
+
COMMERCIAL_OFFICE = "commercial-office"
|
9
|
+
HOME_BASED = "home-based"
|
10
|
+
MIXED_PRESENCE = "mixed-presence"
|
11
|
+
MOBILE_BUSINESS = "mobile-business"
|
12
|
+
ONLINE_ONLY = "online-only"
|
13
|
+
RETAIL_STOREFRONT = "retail-storefront"
|
@@ -0,0 +1,37 @@
|
|
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 CardAcceptanceMethodsTypedDict(TypedDict):
|
11
|
+
r"""Describes the distribution of card transactions by payment method."""
|
12
|
+
|
13
|
+
in_person_percentage: NotRequired[int]
|
14
|
+
r"""Percentage of card transactions that are in-person payments. Minimum value is 0, maximum is 100."""
|
15
|
+
mail_or_phone_percentage: NotRequired[int]
|
16
|
+
r"""Percentage of card transactions that are mail or phone payments. Minimum value is 0, maximum is 100."""
|
17
|
+
online_percentage: NotRequired[int]
|
18
|
+
r"""Percentage of card transactions that are online payments. Minimum value is 0, maximum is 100."""
|
19
|
+
|
20
|
+
|
21
|
+
class CardAcceptanceMethods(BaseModel):
|
22
|
+
r"""Describes the distribution of card transactions by payment method."""
|
23
|
+
|
24
|
+
in_person_percentage: Annotated[
|
25
|
+
Optional[int], pydantic.Field(alias="inPersonPercentage")
|
26
|
+
] = None
|
27
|
+
r"""Percentage of card transactions that are in-person payments. Minimum value is 0, maximum is 100."""
|
28
|
+
|
29
|
+
mail_or_phone_percentage: Annotated[
|
30
|
+
Optional[int], pydantic.Field(alias="mailOrPhonePercentage")
|
31
|
+
] = None
|
32
|
+
r"""Percentage of card transactions that are mail or phone payments. Minimum value is 0, maximum is 100."""
|
33
|
+
|
34
|
+
online_percentage: Annotated[
|
35
|
+
Optional[int], pydantic.Field(alias="onlinePercentage")
|
36
|
+
] = None
|
37
|
+
r"""Percentage of card transactions that are online payments. Minimum value is 0, maximum is 100."""
|
@@ -0,0 +1,27 @@
|
|
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 CardAcceptanceMethodsErrorTypedDict(TypedDict):
|
11
|
+
in_person_percentage: NotRequired[str]
|
12
|
+
mail_or_phone_percentage: NotRequired[str]
|
13
|
+
online_percentage: NotRequired[str]
|
14
|
+
|
15
|
+
|
16
|
+
class CardAcceptanceMethodsError(BaseModel):
|
17
|
+
in_person_percentage: Annotated[
|
18
|
+
Optional[str], pydantic.Field(alias="inPersonPercentage")
|
19
|
+
] = None
|
20
|
+
|
21
|
+
mail_or_phone_percentage: Annotated[
|
22
|
+
Optional[str], pydantic.Field(alias="mailOrPhonePercentage")
|
23
|
+
] = None
|
24
|
+
|
25
|
+
online_percentage: Annotated[
|
26
|
+
Optional[str], pydantic.Field(alias="onlinePercentage")
|
27
|
+
] = None
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .collectfundsach import CollectFundsAch, CollectFundsAchTypedDict
|
5
|
+
from .collectfundscardpayments import (
|
6
|
+
CollectFundsCardPayments,
|
7
|
+
CollectFundsCardPaymentsTypedDict,
|
8
|
+
)
|
9
|
+
from moovio_sdk.types import BaseModel
|
10
|
+
import pydantic
|
11
|
+
from typing import Optional
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
13
|
+
|
14
|
+
|
15
|
+
class CollectFundsTypedDict(TypedDict):
|
16
|
+
ach: NotRequired[CollectFundsAchTypedDict]
|
17
|
+
card_payments: NotRequired[CollectFundsCardPaymentsTypedDict]
|
18
|
+
|
19
|
+
|
20
|
+
class CollectFunds(BaseModel):
|
21
|
+
ach: Optional[CollectFundsAch] = None
|
22
|
+
|
23
|
+
card_payments: Annotated[
|
24
|
+
Optional[CollectFundsCardPayments], pydantic.Field(alias="cardPayments")
|
25
|
+
] = None
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .estimatedactivity import EstimatedActivity, EstimatedActivityTypedDict
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
import pydantic
|
7
|
+
from typing import Optional
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
9
|
+
|
10
|
+
|
11
|
+
class CollectFundsAchTypedDict(TypedDict):
|
12
|
+
estimated_activity: NotRequired[EstimatedActivityTypedDict]
|
13
|
+
|
14
|
+
|
15
|
+
class CollectFundsAch(BaseModel):
|
16
|
+
estimated_activity: Annotated[
|
17
|
+
Optional[EstimatedActivity], pydantic.Field(alias="estimatedActivity")
|
18
|
+
] = None
|