moovio_sdk 0.11.6__py3-none-any.whl → 0.12.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.
Files changed (56) hide show
  1. moovio_sdk/_version.py +3 -3
  2. moovio_sdk/models/components/__init__.py +205 -0
  3. moovio_sdk/models/components/businesspresence.py +13 -0
  4. moovio_sdk/models/components/cardacceptancemethods.py +37 -0
  5. moovio_sdk/models/components/cardacceptancemethodserror.py +27 -0
  6. moovio_sdk/models/components/collectfunds.py +25 -0
  7. moovio_sdk/models/components/collectfundsach.py +18 -0
  8. moovio_sdk/models/components/collectfundsacherror.py +21 -0
  9. moovio_sdk/models/components/collectfundscardpayments.py +41 -0
  10. moovio_sdk/models/components/collectfundscardpaymentserror.py +43 -0
  11. moovio_sdk/models/components/collectfundserror.py +25 -0
  12. moovio_sdk/models/components/createdtransfer.py +5 -0
  13. moovio_sdk/models/components/createtransfer.py +5 -0
  14. moovio_sdk/models/components/estimatedactivity.py +30 -0
  15. moovio_sdk/models/components/estimatedactivityerror.py +27 -0
  16. moovio_sdk/models/components/fulfillment.py +19 -0
  17. moovio_sdk/models/components/fulfillmenterror.py +17 -0
  18. moovio_sdk/models/components/fulfillmentmethod.py +16 -0
  19. moovio_sdk/models/components/fulfillmenttimeframe.py +15 -0
  20. moovio_sdk/models/components/geographicreach.py +10 -0
  21. moovio_sdk/models/components/moneytransfer.py +30 -0
  22. moovio_sdk/models/components/moneytransfererror.py +30 -0
  23. moovio_sdk/models/components/moneytransferpullfromcard.py +18 -0
  24. moovio_sdk/models/components/moneytransferpullfromcarderror.py +21 -0
  25. moovio_sdk/models/components/moneytransferpushtocard.py +18 -0
  26. moovio_sdk/models/components/moneytransferpushtocarderror.py +21 -0
  27. moovio_sdk/models/components/monthlyvolumerange.py +17 -0
  28. moovio_sdk/models/components/pendinglitigation.py +17 -0
  29. moovio_sdk/models/components/refundpolicy.py +16 -0
  30. moovio_sdk/models/components/sendfunds.py +26 -0
  31. moovio_sdk/models/components/sendfundsach.py +18 -0
  32. moovio_sdk/models/components/sendfundsacherror.py +21 -0
  33. moovio_sdk/models/components/sendfundserror.py +29 -0
  34. moovio_sdk/models/components/sendfundspushtocard.py +18 -0
  35. moovio_sdk/models/components/sendfundspushtocarderror.py +21 -0
  36. moovio_sdk/models/components/sendfundsrtp.py +18 -0
  37. moovio_sdk/models/components/sendfundsrtperror.py +21 -0
  38. moovio_sdk/models/components/transfer.py +5 -0
  39. moovio_sdk/models/components/underwriting.py +67 -20
  40. moovio_sdk/models/components/upsertunderwriting.py +56 -0
  41. moovio_sdk/models/components/volumesharebycustomertype.py +20 -0
  42. moovio_sdk/models/components/volumesharebycustomertypeerror.py +20 -0
  43. moovio_sdk/models/components/webhookdata.py +10 -10
  44. moovio_sdk/models/components/webhookdatatransfercreated.py +5 -1
  45. moovio_sdk/models/components/webhookdatatransferupdated.py +5 -1
  46. moovio_sdk/models/errors/__init__.py +8 -0
  47. moovio_sdk/models/errors/transfer.py +3 -0
  48. moovio_sdk/models/errors/upsertunderwritingerror.py +89 -0
  49. moovio_sdk/models/operations/__init__.py +20 -0
  50. moovio_sdk/models/operations/listtransfers.py +9 -0
  51. moovio_sdk/models/operations/saveunderwriting.py +78 -0
  52. moovio_sdk/transfers.py +12 -0
  53. moovio_sdk/underwriting.py +368 -0
  54. {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.12.0.dist-info}/METADATA +7 -1
  55. {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.12.0.dist-info}/RECORD +56 -18
  56. {moovio_sdk-0.11.6.dist-info → moovio_sdk-0.12.0.dist-info}/WHEEL +0 -0
moovio_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.11.6"
6
+ __version__: str = "0.12.0"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.638.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.11.6 2.638.0 latest moovio_sdk"
8
+ __gen_version__: str = "2.638.5"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.12.0 2.638.5 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -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,
@@ -371,6 +395,11 @@ if TYPE_CHECKING:
371
395
  EnrichedIndustryCodesTypedDict,
372
396
  )
373
397
  from .entrymode import EntryMode
398
+ from .estimatedactivity import EstimatedActivity, EstimatedActivityTypedDict
399
+ from .estimatedactivityerror import (
400
+ EstimatedActivityError,
401
+ EstimatedActivityErrorTypedDict,
402
+ )
374
403
  from .evidencetextresponse import (
375
404
  EvidenceTextResponse,
376
405
  EvidenceTextResponseTypedDict,
@@ -400,11 +429,15 @@ if TYPE_CHECKING:
400
429
  FinancialInstitutions,
401
430
  FinancialInstitutionsTypedDict,
402
431
  )
432
+ from .fulfillment import Fulfillment, FulfillmentTypedDict
403
433
  from .fulfillmentdetails import FulfillmentDetails, FulfillmentDetailsTypedDict
404
434
  from .fulfillmentdetailserror import (
405
435
  FulfillmentDetailsError,
406
436
  FulfillmentDetailsErrorTypedDict,
407
437
  )
438
+ from .fulfillmenterror import FulfillmentError, FulfillmentErrorTypedDict
439
+ from .fulfillmentmethod import FulfillmentMethod
440
+ from .fulfillmenttimeframe import FulfillmentTimeframe
408
441
  from .fullissuedcard import FullIssuedCard, FullIssuedCardTypedDict
409
442
  from .generatedby import GeneratedBy, GeneratedByTypedDict
410
443
  from .generatedbyaccountid import (
@@ -424,6 +457,7 @@ if TYPE_CHECKING:
424
457
  GeneratedByTransferID,
425
458
  GeneratedByTransferIDTypedDict,
426
459
  )
460
+ from .geographicreach import GeographicReach
427
461
  from .governmentid import (
428
462
  GovernmentID,
429
463
  GovernmentIDTypedDict,
@@ -526,7 +560,26 @@ if TYPE_CHECKING:
526
560
  from .microdepositstatus import MicroDepositStatus
527
561
  from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
528
562
  from .mode import Mode
563
+ from .moneytransfer import MoneyTransfer, MoneyTransferTypedDict
564
+ from .moneytransfererror import MoneyTransferError, MoneyTransferErrorTypedDict
565
+ from .moneytransferpullfromcard import (
566
+ MoneyTransferPullFromCard,
567
+ MoneyTransferPullFromCardTypedDict,
568
+ )
569
+ from .moneytransferpullfromcarderror import (
570
+ MoneyTransferPullFromCardError,
571
+ MoneyTransferPullFromCardErrorTypedDict,
572
+ )
573
+ from .moneytransferpushtocard import (
574
+ MoneyTransferPushToCard,
575
+ MoneyTransferPushToCardTypedDict,
576
+ )
577
+ from .moneytransferpushtocarderror import (
578
+ MoneyTransferPushToCardError,
579
+ MoneyTransferPushToCardErrorTypedDict,
580
+ )
529
581
  from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
582
+ from .monthlyvolumerange import MonthlyVolumeRange
530
583
  from .moovfee import MoovFee, MoovFeeTypedDict
531
584
  from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
532
585
  from .moovwalletpaymentmethod import (
@@ -644,6 +697,7 @@ if TYPE_CHECKING:
644
697
  PayoutRecipientUpdate,
645
698
  PayoutRecipientUpdateTypedDict,
646
699
  )
700
+ from .pendinglitigation import PendingLitigation
647
701
  from .phonenumber import PhoneNumber, PhoneNumberTypedDict
648
702
  from .phonenumbererror import PhoneNumberError, PhoneNumberErrorTypedDict
649
703
  from .plaidintegration import PlaidIntegration, PlaidIntegrationTypedDict
@@ -672,6 +726,7 @@ if TYPE_CHECKING:
672
726
  from .recur import Recur, RecurTypedDict
673
727
  from .refundcarddetails import RefundCardDetails, RefundCardDetailsTypedDict
674
728
  from .refundcardstatus import RefundCardStatus
729
+ from .refundpolicy import RefundPolicy
675
730
  from .refundstatus import RefundStatus
676
731
  from .registerapplepaymerchantdomains import (
677
732
  RegisterApplePayMerchantDomains,
@@ -732,6 +787,17 @@ if TYPE_CHECKING:
732
787
  from .scheduleresponse import ScheduleResponse, ScheduleResponseTypedDict
733
788
  from .seccode import SECCode
734
789
  from .security import Security, SecurityTypedDict
790
+ from .sendfunds import SendFunds, SendFundsTypedDict
791
+ from .sendfundsach import SendFundsAch, SendFundsAchTypedDict
792
+ from .sendfundsacherror import SendFundsAchError, SendFundsAchErrorTypedDict
793
+ from .sendfundserror import SendFundsError, SendFundsErrorTypedDict
794
+ from .sendfundspushtocard import SendFundsPushToCard, SendFundsPushToCardTypedDict
795
+ from .sendfundspushtocarderror import (
796
+ SendFundsPushToCardError,
797
+ SendFundsPushToCardErrorTypedDict,
798
+ )
799
+ from .sendfundsrtp import SendFundsRtp, SendFundsRtpTypedDict
800
+ from .sendfundsrtperror import SendFundsRtpError, SendFundsRtpErrorTypedDict
735
801
  from .sentreceipt import SentReceipt, SentReceiptTypedDict
736
802
  from .settings import Settings, SettingsTypedDict
737
803
  from .sourcedestinationoptions import (
@@ -827,6 +893,7 @@ if TYPE_CHECKING:
827
893
  )
828
894
  from .updateunderwriting import UpdateUnderwriting, UpdateUnderwritingTypedDict
829
895
  from .upsertschedule import UpsertSchedule, UpsertScheduleTypedDict
896
+ from .upsertunderwriting import UpsertUnderwriting, UpsertUnderwritingTypedDict
830
897
  from .verification import Verification, VerificationTypedDict
831
898
  from .verificationstatus import VerificationStatus
832
899
  from .verificationstatusdetail import VerificationStatusDetail
@@ -838,6 +905,14 @@ if TYPE_CHECKING:
838
905
  VolumeByCustomerTypeError,
839
906
  VolumeByCustomerTypeErrorTypedDict,
840
907
  )
908
+ from .volumesharebycustomertype import (
909
+ VolumeShareByCustomerType,
910
+ VolumeShareByCustomerTypeTypedDict,
911
+ )
912
+ from .volumesharebycustomertypeerror import (
913
+ VolumeShareByCustomerTypeError,
914
+ VolumeShareByCustomerTypeErrorTypedDict,
915
+ )
841
916
  from .wallet import Wallet, WalletTypedDict
842
917
  from .walletavailablebalance import (
843
918
  WalletAvailableBalance,
@@ -1100,6 +1175,7 @@ __all__ = [
1100
1175
  "BrandColorsTypedDict",
1101
1176
  "BrandProperties",
1102
1177
  "BrandPropertiesTypedDict",
1178
+ "BusinessPresence",
1103
1179
  "BusinessProfile",
1104
1180
  "BusinessProfileTypedDict",
1105
1181
  "BusinessType",
@@ -1116,6 +1192,10 @@ __all__ = [
1116
1192
  "CapabilityStatus",
1117
1193
  "CapabilityTypedDict",
1118
1194
  "Card",
1195
+ "CardAcceptanceMethods",
1196
+ "CardAcceptanceMethodsError",
1197
+ "CardAcceptanceMethodsErrorTypedDict",
1198
+ "CardAcceptanceMethodsTypedDict",
1119
1199
  "CardAccountUpdater",
1120
1200
  "CardAccountUpdaterTypedDict",
1121
1201
  "CardAcquiringDispute",
@@ -1161,6 +1241,18 @@ __all__ = [
1161
1241
  "CardVolumeDistributionError",
1162
1242
  "CardVolumeDistributionErrorTypedDict",
1163
1243
  "CardVolumeDistributionTypedDict",
1244
+ "CollectFunds",
1245
+ "CollectFundsAch",
1246
+ "CollectFundsAchError",
1247
+ "CollectFundsAchErrorTypedDict",
1248
+ "CollectFundsAchTypedDict",
1249
+ "CollectFundsCardPayments",
1250
+ "CollectFundsCardPaymentsError",
1251
+ "CollectFundsCardPaymentsErrorTypedDict",
1252
+ "CollectFundsCardPaymentsTypedDict",
1253
+ "CollectFundsError",
1254
+ "CollectFundsErrorTypedDict",
1255
+ "CollectFundsTypedDict",
1164
1256
  "CollectionPaymentMethodType",
1165
1257
  "ColorsValidationError",
1166
1258
  "ColorsValidationErrorTypedDict",
@@ -1297,6 +1389,10 @@ __all__ = [
1297
1389
  "EntryMode",
1298
1390
  "Error",
1299
1391
  "ErrorTypedDict",
1392
+ "EstimatedActivity",
1393
+ "EstimatedActivityError",
1394
+ "EstimatedActivityErrorTypedDict",
1395
+ "EstimatedActivityTypedDict",
1300
1396
  "EvidenceTextResponse",
1301
1397
  "EvidenceTextResponseTypedDict",
1302
1398
  "EvidenceType",
@@ -1325,10 +1421,16 @@ __all__ = [
1325
1421
  "FileUploadRequestMultiPartTypedDict",
1326
1422
  "FinancialInstitutions",
1327
1423
  "FinancialInstitutionsTypedDict",
1424
+ "Fulfillment",
1328
1425
  "FulfillmentDetails",
1329
1426
  "FulfillmentDetailsError",
1330
1427
  "FulfillmentDetailsErrorTypedDict",
1331
1428
  "FulfillmentDetailsTypedDict",
1429
+ "FulfillmentError",
1430
+ "FulfillmentErrorTypedDict",
1431
+ "FulfillmentMethod",
1432
+ "FulfillmentTimeframe",
1433
+ "FulfillmentTypedDict",
1332
1434
  "FullIssuedCard",
1333
1435
  "FullIssuedCardTypedDict",
1334
1436
  "GeneratedBy",
@@ -1343,6 +1445,7 @@ __all__ = [
1343
1445
  "GeneratedByTransferID",
1344
1446
  "GeneratedByTransferIDTypedDict",
1345
1447
  "GeneratedByTypedDict",
1448
+ "GeographicReach",
1346
1449
  "GovernmentID",
1347
1450
  "GovernmentIDError",
1348
1451
  "GovernmentIDErrorItin",
@@ -1431,8 +1534,21 @@ __all__ = [
1431
1534
  "MinimumCommitment",
1432
1535
  "MinimumCommitmentTypedDict",
1433
1536
  "Mode",
1537
+ "MoneyTransfer",
1538
+ "MoneyTransferError",
1539
+ "MoneyTransferErrorTypedDict",
1540
+ "MoneyTransferPullFromCard",
1541
+ "MoneyTransferPullFromCardError",
1542
+ "MoneyTransferPullFromCardErrorTypedDict",
1543
+ "MoneyTransferPullFromCardTypedDict",
1544
+ "MoneyTransferPushToCard",
1545
+ "MoneyTransferPushToCardError",
1546
+ "MoneyTransferPushToCardErrorTypedDict",
1547
+ "MoneyTransferPushToCardTypedDict",
1548
+ "MoneyTransferTypedDict",
1434
1549
  "MonthlyPlatformFee",
1435
1550
  "MonthlyPlatformFeeTypedDict",
1551
+ "MonthlyVolumeRange",
1436
1552
  "MoovFee",
1437
1553
  "MoovFeeDetails",
1438
1554
  "MoovFeeDetailsTypedDict",
@@ -1513,6 +1629,7 @@ __all__ = [
1513
1629
  "PayoutRecipientTypedDict",
1514
1630
  "PayoutRecipientUpdate",
1515
1631
  "PayoutRecipientUpdateTypedDict",
1632
+ "PendingLitigation",
1516
1633
  "Phone",
1517
1634
  "PhoneNumber",
1518
1635
  "PhoneNumberError",
@@ -1565,6 +1682,7 @@ __all__ = [
1565
1682
  "RefundCardDetails",
1566
1683
  "RefundCardDetailsTypedDict",
1567
1684
  "RefundCardStatus",
1685
+ "RefundPolicy",
1568
1686
  "RefundStatus",
1569
1687
  "RegisterApplePayMerchantDomains",
1570
1688
  "RegisterApplePayMerchantDomainsTypedDict",
@@ -1605,6 +1723,22 @@ __all__ = [
1605
1723
  "ScheduleResponseTypedDict",
1606
1724
  "Security",
1607
1725
  "SecurityTypedDict",
1726
+ "SendFunds",
1727
+ "SendFundsAch",
1728
+ "SendFundsAchError",
1729
+ "SendFundsAchErrorTypedDict",
1730
+ "SendFundsAchTypedDict",
1731
+ "SendFundsError",
1732
+ "SendFundsErrorTypedDict",
1733
+ "SendFundsPushToCard",
1734
+ "SendFundsPushToCardError",
1735
+ "SendFundsPushToCardErrorTypedDict",
1736
+ "SendFundsPushToCardTypedDict",
1737
+ "SendFundsRtp",
1738
+ "SendFundsRtpError",
1739
+ "SendFundsRtpErrorTypedDict",
1740
+ "SendFundsRtpTypedDict",
1741
+ "SendFundsTypedDict",
1608
1742
  "SentReceipt",
1609
1743
  "SentReceiptTypedDict",
1610
1744
  "Settings",
@@ -1708,6 +1842,8 @@ __all__ = [
1708
1842
  "UpdateUnderwritingTypedDict",
1709
1843
  "UpsertSchedule",
1710
1844
  "UpsertScheduleTypedDict",
1845
+ "UpsertUnderwriting",
1846
+ "UpsertUnderwritingTypedDict",
1711
1847
  "Use",
1712
1848
  "Verification",
1713
1849
  "VerificationStatus",
@@ -1717,6 +1853,10 @@ __all__ = [
1717
1853
  "VolumeByCustomerTypeError",
1718
1854
  "VolumeByCustomerTypeErrorTypedDict",
1719
1855
  "VolumeByCustomerTypeTypedDict",
1856
+ "VolumeShareByCustomerType",
1857
+ "VolumeShareByCustomerTypeError",
1858
+ "VolumeShareByCustomerTypeErrorTypedDict",
1859
+ "VolumeShareByCustomerTypeTypedDict",
1720
1860
  "Wallet",
1721
1861
  "WalletAvailableBalance",
1722
1862
  "WalletAvailableBalanceTypedDict",
@@ -1922,6 +2062,7 @@ _dynamic_imports: dict[str, str] = {
1922
2062
  "BrandColorValidationErrorTypedDict": ".brandcolorvalidationerror",
1923
2063
  "BrandProperties": ".brandproperties",
1924
2064
  "BrandPropertiesTypedDict": ".brandproperties",
2065
+ "BusinessPresence": ".businesspresence",
1925
2066
  "BusinessProfile": ".businessprofile",
1926
2067
  "BusinessProfileTypedDict": ".businessprofile",
1927
2068
  "BusinessType": ".businesstype",
@@ -1939,6 +2080,10 @@ _dynamic_imports: dict[str, str] = {
1939
2080
  "CapabilityStatus": ".capabilitystatus",
1940
2081
  "Card": ".card",
1941
2082
  "CardTypedDict": ".card",
2083
+ "CardAcceptanceMethods": ".cardacceptancemethods",
2084
+ "CardAcceptanceMethodsTypedDict": ".cardacceptancemethods",
2085
+ "CardAcceptanceMethodsError": ".cardacceptancemethodserror",
2086
+ "CardAcceptanceMethodsErrorTypedDict": ".cardacceptancemethodserror",
1942
2087
  "CardAccountUpdater": ".cardaccountupdater",
1943
2088
  "CardAccountUpdaterTypedDict": ".cardaccountupdater",
1944
2089
  "CardAcquiringDispute": ".cardacquiringdispute",
@@ -1979,6 +2124,18 @@ _dynamic_imports: dict[str, str] = {
1979
2124
  "CardVolumeDistributionTypedDict": ".cardvolumedistribution",
1980
2125
  "CardVolumeDistributionError": ".cardvolumedistributionerror",
1981
2126
  "CardVolumeDistributionErrorTypedDict": ".cardvolumedistributionerror",
2127
+ "CollectFunds": ".collectfunds",
2128
+ "CollectFundsTypedDict": ".collectfunds",
2129
+ "CollectFundsAch": ".collectfundsach",
2130
+ "CollectFundsAchTypedDict": ".collectfundsach",
2131
+ "CollectFundsAchError": ".collectfundsacherror",
2132
+ "CollectFundsAchErrorTypedDict": ".collectfundsacherror",
2133
+ "CollectFundsCardPayments": ".collectfundscardpayments",
2134
+ "CollectFundsCardPaymentsTypedDict": ".collectfundscardpayments",
2135
+ "CollectFundsCardPaymentsError": ".collectfundscardpaymentserror",
2136
+ "CollectFundsCardPaymentsErrorTypedDict": ".collectfundscardpaymentserror",
2137
+ "CollectFundsError": ".collectfundserror",
2138
+ "CollectFundsErrorTypedDict": ".collectfundserror",
1982
2139
  "CollectionPaymentMethodType": ".collectionpaymentmethodtype",
1983
2140
  "ColorsValidationError": ".colorsvalidationerror",
1984
2141
  "ColorsValidationErrorTypedDict": ".colorsvalidationerror",
@@ -2115,6 +2272,10 @@ _dynamic_imports: dict[str, str] = {
2115
2272
  "EnrichedIndustryCodes": ".enrichedindustrycodes",
2116
2273
  "EnrichedIndustryCodesTypedDict": ".enrichedindustrycodes",
2117
2274
  "EntryMode": ".entrymode",
2275
+ "EstimatedActivity": ".estimatedactivity",
2276
+ "EstimatedActivityTypedDict": ".estimatedactivity",
2277
+ "EstimatedActivityError": ".estimatedactivityerror",
2278
+ "EstimatedActivityErrorTypedDict": ".estimatedactivityerror",
2118
2279
  "EvidenceTextResponse": ".evidencetextresponse",
2119
2280
  "EvidenceTextResponseTypedDict": ".evidencetextresponse",
2120
2281
  "EvidenceType": ".evidencetype",
@@ -2141,10 +2302,16 @@ _dynamic_imports: dict[str, str] = {
2141
2302
  "FileUploadRequestMultiPartTypedDict": ".fileuploadrequestmultipart",
2142
2303
  "FinancialInstitutions": ".financialinstitutions",
2143
2304
  "FinancialInstitutionsTypedDict": ".financialinstitutions",
2305
+ "Fulfillment": ".fulfillment",
2306
+ "FulfillmentTypedDict": ".fulfillment",
2144
2307
  "FulfillmentDetails": ".fulfillmentdetails",
2145
2308
  "FulfillmentDetailsTypedDict": ".fulfillmentdetails",
2146
2309
  "FulfillmentDetailsError": ".fulfillmentdetailserror",
2147
2310
  "FulfillmentDetailsErrorTypedDict": ".fulfillmentdetailserror",
2311
+ "FulfillmentError": ".fulfillmenterror",
2312
+ "FulfillmentErrorTypedDict": ".fulfillmenterror",
2313
+ "FulfillmentMethod": ".fulfillmentmethod",
2314
+ "FulfillmentTimeframe": ".fulfillmenttimeframe",
2148
2315
  "FullIssuedCard": ".fullissuedcard",
2149
2316
  "FullIssuedCardTypedDict": ".fullissuedcard",
2150
2317
  "GeneratedBy": ".generatedby",
@@ -2159,6 +2326,7 @@ _dynamic_imports: dict[str, str] = {
2159
2326
  "GeneratedByDisputeIDTypedDict": ".generatedbydisputeid",
2160
2327
  "GeneratedByTransferID": ".generatedbytransferid",
2161
2328
  "GeneratedByTransferIDTypedDict": ".generatedbytransferid",
2329
+ "GeographicReach": ".geographicreach",
2162
2330
  "GovernmentID": ".governmentid",
2163
2331
  "GovernmentIDTypedDict": ".governmentid",
2164
2332
  "Itin": ".governmentid",
@@ -2244,8 +2412,21 @@ _dynamic_imports: dict[str, str] = {
2244
2412
  "MinimumCommitment": ".minimumcommitment",
2245
2413
  "MinimumCommitmentTypedDict": ".minimumcommitment",
2246
2414
  "Mode": ".mode",
2415
+ "MoneyTransfer": ".moneytransfer",
2416
+ "MoneyTransferTypedDict": ".moneytransfer",
2417
+ "MoneyTransferError": ".moneytransfererror",
2418
+ "MoneyTransferErrorTypedDict": ".moneytransfererror",
2419
+ "MoneyTransferPullFromCard": ".moneytransferpullfromcard",
2420
+ "MoneyTransferPullFromCardTypedDict": ".moneytransferpullfromcard",
2421
+ "MoneyTransferPullFromCardError": ".moneytransferpullfromcarderror",
2422
+ "MoneyTransferPullFromCardErrorTypedDict": ".moneytransferpullfromcarderror",
2423
+ "MoneyTransferPushToCard": ".moneytransferpushtocard",
2424
+ "MoneyTransferPushToCardTypedDict": ".moneytransferpushtocard",
2425
+ "MoneyTransferPushToCardError": ".moneytransferpushtocarderror",
2426
+ "MoneyTransferPushToCardErrorTypedDict": ".moneytransferpushtocarderror",
2247
2427
  "MonthlyPlatformFee": ".monthlyplatformfee",
2248
2428
  "MonthlyPlatformFeeTypedDict": ".monthlyplatformfee",
2429
+ "MonthlyVolumeRange": ".monthlyvolumerange",
2249
2430
  "MoovFee": ".moovfee",
2250
2431
  "MoovFeeTypedDict": ".moovfee",
2251
2432
  "MoovFeeDetails": ".moovfeedetails",
@@ -2343,6 +2524,7 @@ _dynamic_imports: dict[str, str] = {
2343
2524
  "PayoutRecipientErrorTypedDict": ".payoutrecipienterror",
2344
2525
  "PayoutRecipientUpdate": ".payoutrecipientupdate",
2345
2526
  "PayoutRecipientUpdateTypedDict": ".payoutrecipientupdate",
2527
+ "PendingLitigation": ".pendinglitigation",
2346
2528
  "PhoneNumber": ".phonenumber",
2347
2529
  "PhoneNumberTypedDict": ".phonenumber",
2348
2530
  "PhoneNumberError": ".phonenumbererror",
@@ -2376,6 +2558,7 @@ _dynamic_imports: dict[str, str] = {
2376
2558
  "RefundCardDetails": ".refundcarddetails",
2377
2559
  "RefundCardDetailsTypedDict": ".refundcarddetails",
2378
2560
  "RefundCardStatus": ".refundcardstatus",
2561
+ "RefundPolicy": ".refundpolicy",
2379
2562
  "RefundStatus": ".refundstatus",
2380
2563
  "RegisterApplePayMerchantDomains": ".registerapplepaymerchantdomains",
2381
2564
  "RegisterApplePayMerchantDomainsTypedDict": ".registerapplepaymerchantdomains",
@@ -2428,6 +2611,22 @@ _dynamic_imports: dict[str, str] = {
2428
2611
  "SECCode": ".seccode",
2429
2612
  "Security": ".security",
2430
2613
  "SecurityTypedDict": ".security",
2614
+ "SendFunds": ".sendfunds",
2615
+ "SendFundsTypedDict": ".sendfunds",
2616
+ "SendFundsAch": ".sendfundsach",
2617
+ "SendFundsAchTypedDict": ".sendfundsach",
2618
+ "SendFundsAchError": ".sendfundsacherror",
2619
+ "SendFundsAchErrorTypedDict": ".sendfundsacherror",
2620
+ "SendFundsError": ".sendfundserror",
2621
+ "SendFundsErrorTypedDict": ".sendfundserror",
2622
+ "SendFundsPushToCard": ".sendfundspushtocard",
2623
+ "SendFundsPushToCardTypedDict": ".sendfundspushtocard",
2624
+ "SendFundsPushToCardError": ".sendfundspushtocarderror",
2625
+ "SendFundsPushToCardErrorTypedDict": ".sendfundspushtocarderror",
2626
+ "SendFundsRtp": ".sendfundsrtp",
2627
+ "SendFundsRtpTypedDict": ".sendfundsrtp",
2628
+ "SendFundsRtpError": ".sendfundsrtperror",
2629
+ "SendFundsRtpErrorTypedDict": ".sendfundsrtperror",
2431
2630
  "SentReceipt": ".sentreceipt",
2432
2631
  "SentReceiptTypedDict": ".sentreceipt",
2433
2632
  "Settings": ".settings",
@@ -2533,6 +2732,8 @@ _dynamic_imports: dict[str, str] = {
2533
2732
  "UpdateUnderwritingTypedDict": ".updateunderwriting",
2534
2733
  "UpsertSchedule": ".upsertschedule",
2535
2734
  "UpsertScheduleTypedDict": ".upsertschedule",
2735
+ "UpsertUnderwriting": ".upsertunderwriting",
2736
+ "UpsertUnderwritingTypedDict": ".upsertunderwriting",
2536
2737
  "Verification": ".verification",
2537
2738
  "VerificationTypedDict": ".verification",
2538
2739
  "VerificationStatus": ".verificationstatus",
@@ -2541,6 +2742,10 @@ _dynamic_imports: dict[str, str] = {
2541
2742
  "VolumeByCustomerTypeTypedDict": ".volumebycustomertype",
2542
2743
  "VolumeByCustomerTypeError": ".volumebycustomertypeerror",
2543
2744
  "VolumeByCustomerTypeErrorTypedDict": ".volumebycustomertypeerror",
2745
+ "VolumeShareByCustomerType": ".volumesharebycustomertype",
2746
+ "VolumeShareByCustomerTypeTypedDict": ".volumesharebycustomertype",
2747
+ "VolumeShareByCustomerTypeError": ".volumesharebycustomertypeerror",
2748
+ "VolumeShareByCustomerTypeErrorTypedDict": ".volumesharebycustomertypeerror",
2544
2749
  "Wallet": ".wallet",
2545
2750
  "WalletTypedDict": ".wallet",
2546
2751
  "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
@@ -0,0 +1,21 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .estimatedactivityerror import (
5
+ EstimatedActivityError,
6
+ EstimatedActivityErrorTypedDict,
7
+ )
8
+ from moovio_sdk.types import BaseModel
9
+ import pydantic
10
+ from typing import Optional
11
+ from typing_extensions import Annotated, NotRequired, TypedDict
12
+
13
+
14
+ class CollectFundsAchErrorTypedDict(TypedDict):
15
+ estimated_activity: NotRequired[EstimatedActivityErrorTypedDict]
16
+
17
+
18
+ class CollectFundsAchError(BaseModel):
19
+ estimated_activity: Annotated[
20
+ Optional[EstimatedActivityError], pydantic.Field(alias="estimatedActivity")
21
+ ] = None
@@ -0,0 +1,41 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .cardacceptancemethods import CardAcceptanceMethods, CardAcceptanceMethodsTypedDict
5
+ from .estimatedactivity import EstimatedActivity, EstimatedActivityTypedDict
6
+ from .fulfillment import Fulfillment, FulfillmentTypedDict
7
+ from .refundpolicy import RefundPolicy
8
+ from moovio_sdk.types import BaseModel
9
+ import pydantic
10
+ from typing import Optional
11
+ from typing_extensions import Annotated, NotRequired, TypedDict
12
+
13
+
14
+ class CollectFundsCardPaymentsTypedDict(TypedDict):
15
+ card_acceptance_methods: NotRequired[CardAcceptanceMethodsTypedDict]
16
+ r"""Describes the distribution of card transactions by payment method."""
17
+ currently_accepts_cards: NotRequired[bool]
18
+ estimated_activity: NotRequired[EstimatedActivityTypedDict]
19
+ fulfillment: NotRequired[FulfillmentTypedDict]
20
+ refund_policy: NotRequired[RefundPolicy]
21
+
22
+
23
+ class CollectFundsCardPayments(BaseModel):
24
+ card_acceptance_methods: Annotated[
25
+ Optional[CardAcceptanceMethods], pydantic.Field(alias="cardAcceptanceMethods")
26
+ ] = None
27
+ r"""Describes the distribution of card transactions by payment method."""
28
+
29
+ currently_accepts_cards: Annotated[
30
+ Optional[bool], pydantic.Field(alias="currentlyAcceptsCards")
31
+ ] = None
32
+
33
+ estimated_activity: Annotated[
34
+ Optional[EstimatedActivity], pydantic.Field(alias="estimatedActivity")
35
+ ] = None
36
+
37
+ fulfillment: Optional[Fulfillment] = None
38
+
39
+ refund_policy: Annotated[
40
+ Optional[RefundPolicy], pydantic.Field(alias="refundPolicy")
41
+ ] = None