moovio_sdk 0.6.0__py3-none-any.whl → 0.7.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/models/components/__init__.py +194 -0
 - moovio_sdk/models/components/webhookdata.py +195 -0
 - moovio_sdk/models/components/webhookdataaccountcreated.py +18 -0
 - moovio_sdk/models/components/webhookdataaccountdeleted.py +18 -0
 - moovio_sdk/models/components/webhookdataaccountupdated.py +18 -0
 - moovio_sdk/models/components/webhookdatabalanceupdated.py +17 -0
 - moovio_sdk/models/components/webhookdatabankaccountcreated.py +17 -0
 - moovio_sdk/models/components/webhookdatabankaccountdeleted.py +17 -0
 - moovio_sdk/models/components/webhookdatabankaccountupdated.py +38 -0
 - moovio_sdk/models/components/webhookdatacancellationcreated.py +21 -0
 - moovio_sdk/models/components/webhookdatacancellationupdated.py +21 -0
 - moovio_sdk/models/components/webhookdatacapabilityrequested.py +30 -0
 - moovio_sdk/models/components/webhookdatacapabilityupdated.py +36 -0
 - moovio_sdk/models/components/webhookdatacardautoupdated.py +23 -0
 - moovio_sdk/models/components/webhookdatadisputecreated.py +41 -0
 - moovio_sdk/models/components/webhookdatadisputeupdated.py +41 -0
 - moovio_sdk/models/components/webhookdatanetworkidupdated.py +33 -0
 - moovio_sdk/models/components/webhookdatapaymentmethoddisabled.py +20 -0
 - moovio_sdk/models/components/webhookdatapaymentmethodenabled.py +20 -0
 - moovio_sdk/models/components/webhookdatarefundcreated.py +20 -0
 - moovio_sdk/models/components/webhookdatarefundupdated.py +24 -0
 - moovio_sdk/models/components/webhookdatarepresentativecreated.py +17 -0
 - moovio_sdk/models/components/webhookdatarepresentativedisabled.py +17 -0
 - moovio_sdk/models/components/webhookdatarepresentativeupdated.py +17 -0
 - moovio_sdk/models/components/webhookdatasweepcreated.py +17 -0
 - moovio_sdk/models/components/webhookdatasweepupdated.py +25 -0
 - moovio_sdk/models/components/webhookdataterminalapplicationcreated.py +22 -0
 - moovio_sdk/models/components/webhookdataterminalapplicationupdated.py +22 -0
 - moovio_sdk/models/components/webhookdatatransfercreated.py +25 -0
 - moovio_sdk/models/components/webhookdatatransferupdated.py +39 -0
 - moovio_sdk/models/components/webhookdatawallettransactionupdated.py +37 -0
 - moovio_sdk/models/components/webhookevent.py +36 -0
 - moovio_sdk/models/components/webhookeventtype.py +38 -0
 - moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py +21 -0
 - moovio_sdk/models/components/webhookwalletavailablebalance.py +24 -0
 - {moovio_sdk-0.6.0.dist-info → moovio_sdk-0.7.0.dist-info}/METADATA +1 -1
 - {moovio_sdk-0.6.0.dist-info → moovio_sdk-0.7.0.dist-info}/RECORD +39 -5
 - {moovio_sdk-0.6.0.dist-info → moovio_sdk-0.7.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. 
     | 
| 
      
 6 
     | 
    
         
            +
            __version__: str = "0.7.0"
         
     | 
| 
       7 
7 
     | 
    
         
             
            __openapi_doc_version__: str = "latest"
         
     | 
| 
       8 
     | 
    
         
            -
            __gen_version__: str = "2. 
     | 
| 
       9 
     | 
    
         
            -
            __user_agent__: str = "speakeasy-sdk/python 0. 
     | 
| 
      
 8 
     | 
    
         
            +
            __gen_version__: str = "2.593.4"
         
     | 
| 
      
 9 
     | 
    
         
            +
            __user_agent__: str = "speakeasy-sdk/python 0.7.0 2.593.4 latest moovio_sdk"
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
            try:
         
     | 
| 
       12 
12 
     | 
    
         
             
                if __package__ is not None:
         
     | 
| 
         @@ -716,6 +716,133 @@ from .wallettransaction import WalletTransaction, WalletTransactionTypedDict 
     | 
|
| 
       716 
716 
     | 
    
         
             
            from .wallettransactionsourcetype import WalletTransactionSourceType
         
     | 
| 
       717 
717 
     | 
    
         
             
            from .wallettransactionstatus import WalletTransactionStatus
         
     | 
| 
       718 
718 
     | 
    
         
             
            from .wallettransactiontype import WalletTransactionType
         
     | 
| 
      
 719 
     | 
    
         
            +
            from .webhookdata import WebhookData, WebhookDataTypedDict
         
     | 
| 
      
 720 
     | 
    
         
            +
            from .webhookdataaccountcreated import (
         
     | 
| 
      
 721 
     | 
    
         
            +
                WebhookDataAccountCreated,
         
     | 
| 
      
 722 
     | 
    
         
            +
                WebhookDataAccountCreatedTypedDict,
         
     | 
| 
      
 723 
     | 
    
         
            +
            )
         
     | 
| 
      
 724 
     | 
    
         
            +
            from .webhookdataaccountdeleted import (
         
     | 
| 
      
 725 
     | 
    
         
            +
                WebhookDataAccountDeleted,
         
     | 
| 
      
 726 
     | 
    
         
            +
                WebhookDataAccountDeletedTypedDict,
         
     | 
| 
      
 727 
     | 
    
         
            +
            )
         
     | 
| 
      
 728 
     | 
    
         
            +
            from .webhookdataaccountupdated import (
         
     | 
| 
      
 729 
     | 
    
         
            +
                WebhookDataAccountUpdated,
         
     | 
| 
      
 730 
     | 
    
         
            +
                WebhookDataAccountUpdatedTypedDict,
         
     | 
| 
      
 731 
     | 
    
         
            +
            )
         
     | 
| 
      
 732 
     | 
    
         
            +
            from .webhookdatabalanceupdated import (
         
     | 
| 
      
 733 
     | 
    
         
            +
                WebhookDataBalanceUpdated,
         
     | 
| 
      
 734 
     | 
    
         
            +
                WebhookDataBalanceUpdatedTypedDict,
         
     | 
| 
      
 735 
     | 
    
         
            +
            )
         
     | 
| 
      
 736 
     | 
    
         
            +
            from .webhookdatabankaccountcreated import (
         
     | 
| 
      
 737 
     | 
    
         
            +
                WebhookDataBankAccountCreated,
         
     | 
| 
      
 738 
     | 
    
         
            +
                WebhookDataBankAccountCreatedTypedDict,
         
     | 
| 
      
 739 
     | 
    
         
            +
            )
         
     | 
| 
      
 740 
     | 
    
         
            +
            from .webhookdatabankaccountdeleted import (
         
     | 
| 
      
 741 
     | 
    
         
            +
                WebhookDataBankAccountDeleted,
         
     | 
| 
      
 742 
     | 
    
         
            +
                WebhookDataBankAccountDeletedTypedDict,
         
     | 
| 
      
 743 
     | 
    
         
            +
            )
         
     | 
| 
      
 744 
     | 
    
         
            +
            from .webhookdatabankaccountupdated import (
         
     | 
| 
      
 745 
     | 
    
         
            +
                WebhookDataBankAccountUpdated,
         
     | 
| 
      
 746 
     | 
    
         
            +
                WebhookDataBankAccountUpdatedTypedDict,
         
     | 
| 
      
 747 
     | 
    
         
            +
            )
         
     | 
| 
      
 748 
     | 
    
         
            +
            from .webhookdatacancellationcreated import (
         
     | 
| 
      
 749 
     | 
    
         
            +
                WebhookDataCancellationCreated,
         
     | 
| 
      
 750 
     | 
    
         
            +
                WebhookDataCancellationCreatedTypedDict,
         
     | 
| 
      
 751 
     | 
    
         
            +
            )
         
     | 
| 
      
 752 
     | 
    
         
            +
            from .webhookdatacancellationupdated import (
         
     | 
| 
      
 753 
     | 
    
         
            +
                WebhookDataCancellationUpdated,
         
     | 
| 
      
 754 
     | 
    
         
            +
                WebhookDataCancellationUpdatedTypedDict,
         
     | 
| 
      
 755 
     | 
    
         
            +
            )
         
     | 
| 
      
 756 
     | 
    
         
            +
            from .webhookdatacapabilityrequested import (
         
     | 
| 
      
 757 
     | 
    
         
            +
                WebhookDataCapabilityRequested,
         
     | 
| 
      
 758 
     | 
    
         
            +
                WebhookDataCapabilityRequestedTypedDict,
         
     | 
| 
      
 759 
     | 
    
         
            +
            )
         
     | 
| 
      
 760 
     | 
    
         
            +
            from .webhookdatacapabilityupdated import (
         
     | 
| 
      
 761 
     | 
    
         
            +
                WebhookDataCapabilityUpdated,
         
     | 
| 
      
 762 
     | 
    
         
            +
                WebhookDataCapabilityUpdatedTypedDict,
         
     | 
| 
      
 763 
     | 
    
         
            +
            )
         
     | 
| 
      
 764 
     | 
    
         
            +
            from .webhookdatacardautoupdated import (
         
     | 
| 
      
 765 
     | 
    
         
            +
                WebhookDataCardAutoUpdated,
         
     | 
| 
      
 766 
     | 
    
         
            +
                WebhookDataCardAutoUpdatedTypedDict,
         
     | 
| 
      
 767 
     | 
    
         
            +
            )
         
     | 
| 
      
 768 
     | 
    
         
            +
            from .webhookdatadisputecreated import (
         
     | 
| 
      
 769 
     | 
    
         
            +
                WebhookDataDisputeCreated,
         
     | 
| 
      
 770 
     | 
    
         
            +
                WebhookDataDisputeCreatedTypedDict,
         
     | 
| 
      
 771 
     | 
    
         
            +
            )
         
     | 
| 
      
 772 
     | 
    
         
            +
            from .webhookdatadisputeupdated import (
         
     | 
| 
      
 773 
     | 
    
         
            +
                WebhookDataDisputeUpdated,
         
     | 
| 
      
 774 
     | 
    
         
            +
                WebhookDataDisputeUpdatedTypedDict,
         
     | 
| 
      
 775 
     | 
    
         
            +
            )
         
     | 
| 
      
 776 
     | 
    
         
            +
            from .webhookdatanetworkidupdated import (
         
     | 
| 
      
 777 
     | 
    
         
            +
                WebhookDataNetworkIDUpdated,
         
     | 
| 
      
 778 
     | 
    
         
            +
                WebhookDataNetworkIDUpdatedTypedDict,
         
     | 
| 
      
 779 
     | 
    
         
            +
            )
         
     | 
| 
      
 780 
     | 
    
         
            +
            from .webhookdatapaymentmethoddisabled import (
         
     | 
| 
      
 781 
     | 
    
         
            +
                WebhookDataPaymentMethodDisabled,
         
     | 
| 
      
 782 
     | 
    
         
            +
                WebhookDataPaymentMethodDisabledTypedDict,
         
     | 
| 
      
 783 
     | 
    
         
            +
            )
         
     | 
| 
      
 784 
     | 
    
         
            +
            from .webhookdatapaymentmethodenabled import (
         
     | 
| 
      
 785 
     | 
    
         
            +
                WebhookDataPaymentMethodEnabled,
         
     | 
| 
      
 786 
     | 
    
         
            +
                WebhookDataPaymentMethodEnabledTypedDict,
         
     | 
| 
      
 787 
     | 
    
         
            +
            )
         
     | 
| 
      
 788 
     | 
    
         
            +
            from .webhookdatarefundcreated import (
         
     | 
| 
      
 789 
     | 
    
         
            +
                WebhookDataRefundCreated,
         
     | 
| 
      
 790 
     | 
    
         
            +
                WebhookDataRefundCreatedTypedDict,
         
     | 
| 
      
 791 
     | 
    
         
            +
            )
         
     | 
| 
      
 792 
     | 
    
         
            +
            from .webhookdatarefundupdated import (
         
     | 
| 
      
 793 
     | 
    
         
            +
                WebhookDataRefundUpdated,
         
     | 
| 
      
 794 
     | 
    
         
            +
                WebhookDataRefundUpdatedTypedDict,
         
     | 
| 
      
 795 
     | 
    
         
            +
            )
         
     | 
| 
      
 796 
     | 
    
         
            +
            from .webhookdatarepresentativecreated import (
         
     | 
| 
      
 797 
     | 
    
         
            +
                WebhookDataRepresentativeCreated,
         
     | 
| 
      
 798 
     | 
    
         
            +
                WebhookDataRepresentativeCreatedTypedDict,
         
     | 
| 
      
 799 
     | 
    
         
            +
            )
         
     | 
| 
      
 800 
     | 
    
         
            +
            from .webhookdatarepresentativedisabled import (
         
     | 
| 
      
 801 
     | 
    
         
            +
                WebhookDataRepresentativeDisabled,
         
     | 
| 
      
 802 
     | 
    
         
            +
                WebhookDataRepresentativeDisabledTypedDict,
         
     | 
| 
      
 803 
     | 
    
         
            +
            )
         
     | 
| 
      
 804 
     | 
    
         
            +
            from .webhookdatarepresentativeupdated import (
         
     | 
| 
      
 805 
     | 
    
         
            +
                WebhookDataRepresentativeUpdated,
         
     | 
| 
      
 806 
     | 
    
         
            +
                WebhookDataRepresentativeUpdatedTypedDict,
         
     | 
| 
      
 807 
     | 
    
         
            +
            )
         
     | 
| 
      
 808 
     | 
    
         
            +
            from .webhookdatasweepcreated import (
         
     | 
| 
      
 809 
     | 
    
         
            +
                WebhookDataSweepCreated,
         
     | 
| 
      
 810 
     | 
    
         
            +
                WebhookDataSweepCreatedTypedDict,
         
     | 
| 
      
 811 
     | 
    
         
            +
            )
         
     | 
| 
      
 812 
     | 
    
         
            +
            from .webhookdatasweepupdated import (
         
     | 
| 
      
 813 
     | 
    
         
            +
                WebhookDataSweepUpdated,
         
     | 
| 
      
 814 
     | 
    
         
            +
                WebhookDataSweepUpdatedTypedDict,
         
     | 
| 
      
 815 
     | 
    
         
            +
            )
         
     | 
| 
      
 816 
     | 
    
         
            +
            from .webhookdataterminalapplicationcreated import (
         
     | 
| 
      
 817 
     | 
    
         
            +
                WebhookDataTerminalApplicationCreated,
         
     | 
| 
      
 818 
     | 
    
         
            +
                WebhookDataTerminalApplicationCreatedTypedDict,
         
     | 
| 
      
 819 
     | 
    
         
            +
            )
         
     | 
| 
      
 820 
     | 
    
         
            +
            from .webhookdataterminalapplicationupdated import (
         
     | 
| 
      
 821 
     | 
    
         
            +
                WebhookDataTerminalApplicationUpdated,
         
     | 
| 
      
 822 
     | 
    
         
            +
                WebhookDataTerminalApplicationUpdatedTypedDict,
         
     | 
| 
      
 823 
     | 
    
         
            +
            )
         
     | 
| 
      
 824 
     | 
    
         
            +
            from .webhookdatatransfercreated import (
         
     | 
| 
      
 825 
     | 
    
         
            +
                WebhookDataTransferCreated,
         
     | 
| 
      
 826 
     | 
    
         
            +
                WebhookDataTransferCreatedTypedDict,
         
     | 
| 
      
 827 
     | 
    
         
            +
            )
         
     | 
| 
      
 828 
     | 
    
         
            +
            from .webhookdatatransferupdated import (
         
     | 
| 
      
 829 
     | 
    
         
            +
                WebhookDataTransferUpdated,
         
     | 
| 
      
 830 
     | 
    
         
            +
                WebhookDataTransferUpdatedTypedDict,
         
     | 
| 
      
 831 
     | 
    
         
            +
            )
         
     | 
| 
      
 832 
     | 
    
         
            +
            from .webhookdatawallettransactionupdated import (
         
     | 
| 
      
 833 
     | 
    
         
            +
                WebhookDataWalletTransactionUpdated,
         
     | 
| 
      
 834 
     | 
    
         
            +
                WebhookDataWalletTransactionUpdatedTypedDict,
         
     | 
| 
      
 835 
     | 
    
         
            +
            )
         
     | 
| 
      
 836 
     | 
    
         
            +
            from .webhookevent import WebhookEvent, WebhookEventTypedDict
         
     | 
| 
      
 837 
     | 
    
         
            +
            from .webhookeventtype import WebhookEventType
         
     | 
| 
      
 838 
     | 
    
         
            +
            from .webhooktransferpaymentmethoddetails import (
         
     | 
| 
      
 839 
     | 
    
         
            +
                WebhookTransferPaymentMethodDetails,
         
     | 
| 
      
 840 
     | 
    
         
            +
                WebhookTransferPaymentMethodDetailsTypedDict,
         
     | 
| 
      
 841 
     | 
    
         
            +
            )
         
     | 
| 
      
 842 
     | 
    
         
            +
            from .webhookwalletavailablebalance import (
         
     | 
| 
      
 843 
     | 
    
         
            +
                WebhookWalletAvailableBalance,
         
     | 
| 
      
 844 
     | 
    
         
            +
                WebhookWalletAvailableBalanceTypedDict,
         
     | 
| 
      
 845 
     | 
    
         
            +
            )
         
     | 
| 
       719 
846 
     | 
    
         | 
| 
       720 
847 
     | 
    
         | 
| 
       721 
848 
     | 
    
         
             
            __all__ = [
         
     | 
| 
         @@ -1455,4 +1582,71 @@ __all__ = [ 
     | 
|
| 
       1455 
1582 
     | 
    
         
             
                "WalletTransactionType",
         
     | 
| 
       1456 
1583 
     | 
    
         
             
                "WalletTransactionTypedDict",
         
     | 
| 
       1457 
1584 
     | 
    
         
             
                "WalletTypedDict",
         
     | 
| 
      
 1585 
     | 
    
         
            +
                "WebhookData",
         
     | 
| 
      
 1586 
     | 
    
         
            +
                "WebhookDataAccountCreated",
         
     | 
| 
      
 1587 
     | 
    
         
            +
                "WebhookDataAccountCreatedTypedDict",
         
     | 
| 
      
 1588 
     | 
    
         
            +
                "WebhookDataAccountDeleted",
         
     | 
| 
      
 1589 
     | 
    
         
            +
                "WebhookDataAccountDeletedTypedDict",
         
     | 
| 
      
 1590 
     | 
    
         
            +
                "WebhookDataAccountUpdated",
         
     | 
| 
      
 1591 
     | 
    
         
            +
                "WebhookDataAccountUpdatedTypedDict",
         
     | 
| 
      
 1592 
     | 
    
         
            +
                "WebhookDataBalanceUpdated",
         
     | 
| 
      
 1593 
     | 
    
         
            +
                "WebhookDataBalanceUpdatedTypedDict",
         
     | 
| 
      
 1594 
     | 
    
         
            +
                "WebhookDataBankAccountCreated",
         
     | 
| 
      
 1595 
     | 
    
         
            +
                "WebhookDataBankAccountCreatedTypedDict",
         
     | 
| 
      
 1596 
     | 
    
         
            +
                "WebhookDataBankAccountDeleted",
         
     | 
| 
      
 1597 
     | 
    
         
            +
                "WebhookDataBankAccountDeletedTypedDict",
         
     | 
| 
      
 1598 
     | 
    
         
            +
                "WebhookDataBankAccountUpdated",
         
     | 
| 
      
 1599 
     | 
    
         
            +
                "WebhookDataBankAccountUpdatedTypedDict",
         
     | 
| 
      
 1600 
     | 
    
         
            +
                "WebhookDataCancellationCreated",
         
     | 
| 
      
 1601 
     | 
    
         
            +
                "WebhookDataCancellationCreatedTypedDict",
         
     | 
| 
      
 1602 
     | 
    
         
            +
                "WebhookDataCancellationUpdated",
         
     | 
| 
      
 1603 
     | 
    
         
            +
                "WebhookDataCancellationUpdatedTypedDict",
         
     | 
| 
      
 1604 
     | 
    
         
            +
                "WebhookDataCapabilityRequested",
         
     | 
| 
      
 1605 
     | 
    
         
            +
                "WebhookDataCapabilityRequestedTypedDict",
         
     | 
| 
      
 1606 
     | 
    
         
            +
                "WebhookDataCapabilityUpdated",
         
     | 
| 
      
 1607 
     | 
    
         
            +
                "WebhookDataCapabilityUpdatedTypedDict",
         
     | 
| 
      
 1608 
     | 
    
         
            +
                "WebhookDataCardAutoUpdated",
         
     | 
| 
      
 1609 
     | 
    
         
            +
                "WebhookDataCardAutoUpdatedTypedDict",
         
     | 
| 
      
 1610 
     | 
    
         
            +
                "WebhookDataDisputeCreated",
         
     | 
| 
      
 1611 
     | 
    
         
            +
                "WebhookDataDisputeCreatedTypedDict",
         
     | 
| 
      
 1612 
     | 
    
         
            +
                "WebhookDataDisputeUpdated",
         
     | 
| 
      
 1613 
     | 
    
         
            +
                "WebhookDataDisputeUpdatedTypedDict",
         
     | 
| 
      
 1614 
     | 
    
         
            +
                "WebhookDataNetworkIDUpdated",
         
     | 
| 
      
 1615 
     | 
    
         
            +
                "WebhookDataNetworkIDUpdatedTypedDict",
         
     | 
| 
      
 1616 
     | 
    
         
            +
                "WebhookDataPaymentMethodDisabled",
         
     | 
| 
      
 1617 
     | 
    
         
            +
                "WebhookDataPaymentMethodDisabledTypedDict",
         
     | 
| 
      
 1618 
     | 
    
         
            +
                "WebhookDataPaymentMethodEnabled",
         
     | 
| 
      
 1619 
     | 
    
         
            +
                "WebhookDataPaymentMethodEnabledTypedDict",
         
     | 
| 
      
 1620 
     | 
    
         
            +
                "WebhookDataRefundCreated",
         
     | 
| 
      
 1621 
     | 
    
         
            +
                "WebhookDataRefundCreatedTypedDict",
         
     | 
| 
      
 1622 
     | 
    
         
            +
                "WebhookDataRefundUpdated",
         
     | 
| 
      
 1623 
     | 
    
         
            +
                "WebhookDataRefundUpdatedTypedDict",
         
     | 
| 
      
 1624 
     | 
    
         
            +
                "WebhookDataRepresentativeCreated",
         
     | 
| 
      
 1625 
     | 
    
         
            +
                "WebhookDataRepresentativeCreatedTypedDict",
         
     | 
| 
      
 1626 
     | 
    
         
            +
                "WebhookDataRepresentativeDisabled",
         
     | 
| 
      
 1627 
     | 
    
         
            +
                "WebhookDataRepresentativeDisabledTypedDict",
         
     | 
| 
      
 1628 
     | 
    
         
            +
                "WebhookDataRepresentativeUpdated",
         
     | 
| 
      
 1629 
     | 
    
         
            +
                "WebhookDataRepresentativeUpdatedTypedDict",
         
     | 
| 
      
 1630 
     | 
    
         
            +
                "WebhookDataSweepCreated",
         
     | 
| 
      
 1631 
     | 
    
         
            +
                "WebhookDataSweepCreatedTypedDict",
         
     | 
| 
      
 1632 
     | 
    
         
            +
                "WebhookDataSweepUpdated",
         
     | 
| 
      
 1633 
     | 
    
         
            +
                "WebhookDataSweepUpdatedTypedDict",
         
     | 
| 
      
 1634 
     | 
    
         
            +
                "WebhookDataTerminalApplicationCreated",
         
     | 
| 
      
 1635 
     | 
    
         
            +
                "WebhookDataTerminalApplicationCreatedTypedDict",
         
     | 
| 
      
 1636 
     | 
    
         
            +
                "WebhookDataTerminalApplicationUpdated",
         
     | 
| 
      
 1637 
     | 
    
         
            +
                "WebhookDataTerminalApplicationUpdatedTypedDict",
         
     | 
| 
      
 1638 
     | 
    
         
            +
                "WebhookDataTransferCreated",
         
     | 
| 
      
 1639 
     | 
    
         
            +
                "WebhookDataTransferCreatedTypedDict",
         
     | 
| 
      
 1640 
     | 
    
         
            +
                "WebhookDataTransferUpdated",
         
     | 
| 
      
 1641 
     | 
    
         
            +
                "WebhookDataTransferUpdatedTypedDict",
         
     | 
| 
      
 1642 
     | 
    
         
            +
                "WebhookDataTypedDict",
         
     | 
| 
      
 1643 
     | 
    
         
            +
                "WebhookDataWalletTransactionUpdated",
         
     | 
| 
      
 1644 
     | 
    
         
            +
                "WebhookDataWalletTransactionUpdatedTypedDict",
         
     | 
| 
      
 1645 
     | 
    
         
            +
                "WebhookEvent",
         
     | 
| 
      
 1646 
     | 
    
         
            +
                "WebhookEventType",
         
     | 
| 
      
 1647 
     | 
    
         
            +
                "WebhookEventTypedDict",
         
     | 
| 
      
 1648 
     | 
    
         
            +
                "WebhookTransferPaymentMethodDetails",
         
     | 
| 
      
 1649 
     | 
    
         
            +
                "WebhookTransferPaymentMethodDetailsTypedDict",
         
     | 
| 
      
 1650 
     | 
    
         
            +
                "WebhookWalletAvailableBalance",
         
     | 
| 
      
 1651 
     | 
    
         
            +
                "WebhookWalletAvailableBalanceTypedDict",
         
     | 
| 
       1458 
1652 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -0,0 +1,195 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .webhookdataaccountcreated import (
         
     | 
| 
      
 5 
     | 
    
         
            +
                WebhookDataAccountCreated,
         
     | 
| 
      
 6 
     | 
    
         
            +
                WebhookDataAccountCreatedTypedDict,
         
     | 
| 
      
 7 
     | 
    
         
            +
            )
         
     | 
| 
      
 8 
     | 
    
         
            +
            from .webhookdataaccountdeleted import (
         
     | 
| 
      
 9 
     | 
    
         
            +
                WebhookDataAccountDeleted,
         
     | 
| 
      
 10 
     | 
    
         
            +
                WebhookDataAccountDeletedTypedDict,
         
     | 
| 
      
 11 
     | 
    
         
            +
            )
         
     | 
| 
      
 12 
     | 
    
         
            +
            from .webhookdataaccountupdated import (
         
     | 
| 
      
 13 
     | 
    
         
            +
                WebhookDataAccountUpdated,
         
     | 
| 
      
 14 
     | 
    
         
            +
                WebhookDataAccountUpdatedTypedDict,
         
     | 
| 
      
 15 
     | 
    
         
            +
            )
         
     | 
| 
      
 16 
     | 
    
         
            +
            from .webhookdatabalanceupdated import (
         
     | 
| 
      
 17 
     | 
    
         
            +
                WebhookDataBalanceUpdated,
         
     | 
| 
      
 18 
     | 
    
         
            +
                WebhookDataBalanceUpdatedTypedDict,
         
     | 
| 
      
 19 
     | 
    
         
            +
            )
         
     | 
| 
      
 20 
     | 
    
         
            +
            from .webhookdatabankaccountcreated import (
         
     | 
| 
      
 21 
     | 
    
         
            +
                WebhookDataBankAccountCreated,
         
     | 
| 
      
 22 
     | 
    
         
            +
                WebhookDataBankAccountCreatedTypedDict,
         
     | 
| 
      
 23 
     | 
    
         
            +
            )
         
     | 
| 
      
 24 
     | 
    
         
            +
            from .webhookdatabankaccountdeleted import (
         
     | 
| 
      
 25 
     | 
    
         
            +
                WebhookDataBankAccountDeleted,
         
     | 
| 
      
 26 
     | 
    
         
            +
                WebhookDataBankAccountDeletedTypedDict,
         
     | 
| 
      
 27 
     | 
    
         
            +
            )
         
     | 
| 
      
 28 
     | 
    
         
            +
            from .webhookdatabankaccountupdated import (
         
     | 
| 
      
 29 
     | 
    
         
            +
                WebhookDataBankAccountUpdated,
         
     | 
| 
      
 30 
     | 
    
         
            +
                WebhookDataBankAccountUpdatedTypedDict,
         
     | 
| 
      
 31 
     | 
    
         
            +
            )
         
     | 
| 
      
 32 
     | 
    
         
            +
            from .webhookdatacancellationcreated import (
         
     | 
| 
      
 33 
     | 
    
         
            +
                WebhookDataCancellationCreated,
         
     | 
| 
      
 34 
     | 
    
         
            +
                WebhookDataCancellationCreatedTypedDict,
         
     | 
| 
      
 35 
     | 
    
         
            +
            )
         
     | 
| 
      
 36 
     | 
    
         
            +
            from .webhookdatacancellationupdated import (
         
     | 
| 
      
 37 
     | 
    
         
            +
                WebhookDataCancellationUpdated,
         
     | 
| 
      
 38 
     | 
    
         
            +
                WebhookDataCancellationUpdatedTypedDict,
         
     | 
| 
      
 39 
     | 
    
         
            +
            )
         
     | 
| 
      
 40 
     | 
    
         
            +
            from .webhookdatacapabilityrequested import (
         
     | 
| 
      
 41 
     | 
    
         
            +
                WebhookDataCapabilityRequested,
         
     | 
| 
      
 42 
     | 
    
         
            +
                WebhookDataCapabilityRequestedTypedDict,
         
     | 
| 
      
 43 
     | 
    
         
            +
            )
         
     | 
| 
      
 44 
     | 
    
         
            +
            from .webhookdatacapabilityupdated import (
         
     | 
| 
      
 45 
     | 
    
         
            +
                WebhookDataCapabilityUpdated,
         
     | 
| 
      
 46 
     | 
    
         
            +
                WebhookDataCapabilityUpdatedTypedDict,
         
     | 
| 
      
 47 
     | 
    
         
            +
            )
         
     | 
| 
      
 48 
     | 
    
         
            +
            from .webhookdatacardautoupdated import (
         
     | 
| 
      
 49 
     | 
    
         
            +
                WebhookDataCardAutoUpdated,
         
     | 
| 
      
 50 
     | 
    
         
            +
                WebhookDataCardAutoUpdatedTypedDict,
         
     | 
| 
      
 51 
     | 
    
         
            +
            )
         
     | 
| 
      
 52 
     | 
    
         
            +
            from .webhookdatadisputecreated import (
         
     | 
| 
      
 53 
     | 
    
         
            +
                WebhookDataDisputeCreated,
         
     | 
| 
      
 54 
     | 
    
         
            +
                WebhookDataDisputeCreatedTypedDict,
         
     | 
| 
      
 55 
     | 
    
         
            +
            )
         
     | 
| 
      
 56 
     | 
    
         
            +
            from .webhookdatadisputeupdated import (
         
     | 
| 
      
 57 
     | 
    
         
            +
                WebhookDataDisputeUpdated,
         
     | 
| 
      
 58 
     | 
    
         
            +
                WebhookDataDisputeUpdatedTypedDict,
         
     | 
| 
      
 59 
     | 
    
         
            +
            )
         
     | 
| 
      
 60 
     | 
    
         
            +
            from .webhookdatanetworkidupdated import (
         
     | 
| 
      
 61 
     | 
    
         
            +
                WebhookDataNetworkIDUpdated,
         
     | 
| 
      
 62 
     | 
    
         
            +
                WebhookDataNetworkIDUpdatedTypedDict,
         
     | 
| 
      
 63 
     | 
    
         
            +
            )
         
     | 
| 
      
 64 
     | 
    
         
            +
            from .webhookdatapaymentmethoddisabled import (
         
     | 
| 
      
 65 
     | 
    
         
            +
                WebhookDataPaymentMethodDisabled,
         
     | 
| 
      
 66 
     | 
    
         
            +
                WebhookDataPaymentMethodDisabledTypedDict,
         
     | 
| 
      
 67 
     | 
    
         
            +
            )
         
     | 
| 
      
 68 
     | 
    
         
            +
            from .webhookdatapaymentmethodenabled import (
         
     | 
| 
      
 69 
     | 
    
         
            +
                WebhookDataPaymentMethodEnabled,
         
     | 
| 
      
 70 
     | 
    
         
            +
                WebhookDataPaymentMethodEnabledTypedDict,
         
     | 
| 
      
 71 
     | 
    
         
            +
            )
         
     | 
| 
      
 72 
     | 
    
         
            +
            from .webhookdatarefundcreated import (
         
     | 
| 
      
 73 
     | 
    
         
            +
                WebhookDataRefundCreated,
         
     | 
| 
      
 74 
     | 
    
         
            +
                WebhookDataRefundCreatedTypedDict,
         
     | 
| 
      
 75 
     | 
    
         
            +
            )
         
     | 
| 
      
 76 
     | 
    
         
            +
            from .webhookdatarefundupdated import (
         
     | 
| 
      
 77 
     | 
    
         
            +
                WebhookDataRefundUpdated,
         
     | 
| 
      
 78 
     | 
    
         
            +
                WebhookDataRefundUpdatedTypedDict,
         
     | 
| 
      
 79 
     | 
    
         
            +
            )
         
     | 
| 
      
 80 
     | 
    
         
            +
            from .webhookdatarepresentativecreated import (
         
     | 
| 
      
 81 
     | 
    
         
            +
                WebhookDataRepresentativeCreated,
         
     | 
| 
      
 82 
     | 
    
         
            +
                WebhookDataRepresentativeCreatedTypedDict,
         
     | 
| 
      
 83 
     | 
    
         
            +
            )
         
     | 
| 
      
 84 
     | 
    
         
            +
            from .webhookdatarepresentativedisabled import (
         
     | 
| 
      
 85 
     | 
    
         
            +
                WebhookDataRepresentativeDisabled,
         
     | 
| 
      
 86 
     | 
    
         
            +
                WebhookDataRepresentativeDisabledTypedDict,
         
     | 
| 
      
 87 
     | 
    
         
            +
            )
         
     | 
| 
      
 88 
     | 
    
         
            +
            from .webhookdatarepresentativeupdated import (
         
     | 
| 
      
 89 
     | 
    
         
            +
                WebhookDataRepresentativeUpdated,
         
     | 
| 
      
 90 
     | 
    
         
            +
                WebhookDataRepresentativeUpdatedTypedDict,
         
     | 
| 
      
 91 
     | 
    
         
            +
            )
         
     | 
| 
      
 92 
     | 
    
         
            +
            from .webhookdatasweepcreated import (
         
     | 
| 
      
 93 
     | 
    
         
            +
                WebhookDataSweepCreated,
         
     | 
| 
      
 94 
     | 
    
         
            +
                WebhookDataSweepCreatedTypedDict,
         
     | 
| 
      
 95 
     | 
    
         
            +
            )
         
     | 
| 
      
 96 
     | 
    
         
            +
            from .webhookdatasweepupdated import (
         
     | 
| 
      
 97 
     | 
    
         
            +
                WebhookDataSweepUpdated,
         
     | 
| 
      
 98 
     | 
    
         
            +
                WebhookDataSweepUpdatedTypedDict,
         
     | 
| 
      
 99 
     | 
    
         
            +
            )
         
     | 
| 
      
 100 
     | 
    
         
            +
            from .webhookdataterminalapplicationcreated import (
         
     | 
| 
      
 101 
     | 
    
         
            +
                WebhookDataTerminalApplicationCreated,
         
     | 
| 
      
 102 
     | 
    
         
            +
                WebhookDataTerminalApplicationCreatedTypedDict,
         
     | 
| 
      
 103 
     | 
    
         
            +
            )
         
     | 
| 
      
 104 
     | 
    
         
            +
            from .webhookdataterminalapplicationupdated import (
         
     | 
| 
      
 105 
     | 
    
         
            +
                WebhookDataTerminalApplicationUpdated,
         
     | 
| 
      
 106 
     | 
    
         
            +
                WebhookDataTerminalApplicationUpdatedTypedDict,
         
     | 
| 
      
 107 
     | 
    
         
            +
            )
         
     | 
| 
      
 108 
     | 
    
         
            +
            from .webhookdatatransfercreated import (
         
     | 
| 
      
 109 
     | 
    
         
            +
                WebhookDataTransferCreated,
         
     | 
| 
      
 110 
     | 
    
         
            +
                WebhookDataTransferCreatedTypedDict,
         
     | 
| 
      
 111 
     | 
    
         
            +
            )
         
     | 
| 
      
 112 
     | 
    
         
            +
            from .webhookdatatransferupdated import (
         
     | 
| 
      
 113 
     | 
    
         
            +
                WebhookDataTransferUpdated,
         
     | 
| 
      
 114 
     | 
    
         
            +
                WebhookDataTransferUpdatedTypedDict,
         
     | 
| 
      
 115 
     | 
    
         
            +
            )
         
     | 
| 
      
 116 
     | 
    
         
            +
            from .webhookdatawallettransactionupdated import (
         
     | 
| 
      
 117 
     | 
    
         
            +
                WebhookDataWalletTransactionUpdated,
         
     | 
| 
      
 118 
     | 
    
         
            +
                WebhookDataWalletTransactionUpdatedTypedDict,
         
     | 
| 
      
 119 
     | 
    
         
            +
            )
         
     | 
| 
      
 120 
     | 
    
         
            +
            from typing import Union
         
     | 
| 
      
 121 
     | 
    
         
            +
            from typing_extensions import TypeAliasType
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            WebhookDataTypedDict = TypeAliasType(
         
     | 
| 
      
 125 
     | 
    
         
            +
                "WebhookDataTypedDict",
         
     | 
| 
      
 126 
     | 
    
         
            +
                Union[
         
     | 
| 
      
 127 
     | 
    
         
            +
                    WebhookDataRepresentativeCreatedTypedDict,
         
     | 
| 
      
 128 
     | 
    
         
            +
                    WebhookDataAccountUpdatedTypedDict,
         
     | 
| 
      
 129 
     | 
    
         
            +
                    WebhookDataAccountDeletedTypedDict,
         
     | 
| 
      
 130 
     | 
    
         
            +
                    WebhookDataBalanceUpdatedTypedDict,
         
     | 
| 
      
 131 
     | 
    
         
            +
                    WebhookDataBankAccountCreatedTypedDict,
         
     | 
| 
      
 132 
     | 
    
         
            +
                    WebhookDataTerminalApplicationUpdatedTypedDict,
         
     | 
| 
      
 133 
     | 
    
         
            +
                    WebhookDataBankAccountDeletedTypedDict,
         
     | 
| 
      
 134 
     | 
    
         
            +
                    WebhookDataAccountCreatedTypedDict,
         
     | 
| 
      
 135 
     | 
    
         
            +
                    WebhookDataTerminalApplicationCreatedTypedDict,
         
     | 
| 
      
 136 
     | 
    
         
            +
                    WebhookDataSweepCreatedTypedDict,
         
     | 
| 
      
 137 
     | 
    
         
            +
                    WebhookDataRepresentativeDisabledTypedDict,
         
     | 
| 
      
 138 
     | 
    
         
            +
                    WebhookDataRepresentativeUpdatedTypedDict,
         
     | 
| 
      
 139 
     | 
    
         
            +
                    WebhookDataCancellationCreatedTypedDict,
         
     | 
| 
      
 140 
     | 
    
         
            +
                    WebhookDataCapabilityRequestedTypedDict,
         
     | 
| 
      
 141 
     | 
    
         
            +
                    WebhookDataTransferCreatedTypedDict,
         
     | 
| 
      
 142 
     | 
    
         
            +
                    WebhookDataPaymentMethodEnabledTypedDict,
         
     | 
| 
      
 143 
     | 
    
         
            +
                    WebhookDataPaymentMethodDisabledTypedDict,
         
     | 
| 
      
 144 
     | 
    
         
            +
                    WebhookDataRefundCreatedTypedDict,
         
     | 
| 
      
 145 
     | 
    
         
            +
                    WebhookDataCancellationUpdatedTypedDict,
         
     | 
| 
      
 146 
     | 
    
         
            +
                    WebhookDataCardAutoUpdatedTypedDict,
         
     | 
| 
      
 147 
     | 
    
         
            +
                    WebhookDataCapabilityUpdatedTypedDict,
         
     | 
| 
      
 148 
     | 
    
         
            +
                    WebhookDataSweepUpdatedTypedDict,
         
     | 
| 
      
 149 
     | 
    
         
            +
                    WebhookDataRefundUpdatedTypedDict,
         
     | 
| 
      
 150 
     | 
    
         
            +
                    WebhookDataBankAccountUpdatedTypedDict,
         
     | 
| 
      
 151 
     | 
    
         
            +
                    WebhookDataTransferUpdatedTypedDict,
         
     | 
| 
      
 152 
     | 
    
         
            +
                    WebhookDataWalletTransactionUpdatedTypedDict,
         
     | 
| 
      
 153 
     | 
    
         
            +
                    WebhookDataDisputeUpdatedTypedDict,
         
     | 
| 
      
 154 
     | 
    
         
            +
                    WebhookDataDisputeCreatedTypedDict,
         
     | 
| 
      
 155 
     | 
    
         
            +
                    WebhookDataNetworkIDUpdatedTypedDict,
         
     | 
| 
      
 156 
     | 
    
         
            +
                ],
         
     | 
| 
      
 157 
     | 
    
         
            +
            )
         
     | 
| 
      
 158 
     | 
    
         
            +
            r"""The data for the webhook event. The contents are based on the event type."""
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
            WebhookData = TypeAliasType(
         
     | 
| 
      
 162 
     | 
    
         
            +
                "WebhookData",
         
     | 
| 
      
 163 
     | 
    
         
            +
                Union[
         
     | 
| 
      
 164 
     | 
    
         
            +
                    WebhookDataRepresentativeCreated,
         
     | 
| 
      
 165 
     | 
    
         
            +
                    WebhookDataAccountUpdated,
         
     | 
| 
      
 166 
     | 
    
         
            +
                    WebhookDataAccountDeleted,
         
     | 
| 
      
 167 
     | 
    
         
            +
                    WebhookDataBalanceUpdated,
         
     | 
| 
      
 168 
     | 
    
         
            +
                    WebhookDataBankAccountCreated,
         
     | 
| 
      
 169 
     | 
    
         
            +
                    WebhookDataTerminalApplicationUpdated,
         
     | 
| 
      
 170 
     | 
    
         
            +
                    WebhookDataBankAccountDeleted,
         
     | 
| 
      
 171 
     | 
    
         
            +
                    WebhookDataAccountCreated,
         
     | 
| 
      
 172 
     | 
    
         
            +
                    WebhookDataTerminalApplicationCreated,
         
     | 
| 
      
 173 
     | 
    
         
            +
                    WebhookDataSweepCreated,
         
     | 
| 
      
 174 
     | 
    
         
            +
                    WebhookDataRepresentativeDisabled,
         
     | 
| 
      
 175 
     | 
    
         
            +
                    WebhookDataRepresentativeUpdated,
         
     | 
| 
      
 176 
     | 
    
         
            +
                    WebhookDataCancellationCreated,
         
     | 
| 
      
 177 
     | 
    
         
            +
                    WebhookDataCapabilityRequested,
         
     | 
| 
      
 178 
     | 
    
         
            +
                    WebhookDataTransferCreated,
         
     | 
| 
      
 179 
     | 
    
         
            +
                    WebhookDataPaymentMethodEnabled,
         
     | 
| 
      
 180 
     | 
    
         
            +
                    WebhookDataPaymentMethodDisabled,
         
     | 
| 
      
 181 
     | 
    
         
            +
                    WebhookDataRefundCreated,
         
     | 
| 
      
 182 
     | 
    
         
            +
                    WebhookDataCancellationUpdated,
         
     | 
| 
      
 183 
     | 
    
         
            +
                    WebhookDataCardAutoUpdated,
         
     | 
| 
      
 184 
     | 
    
         
            +
                    WebhookDataCapabilityUpdated,
         
     | 
| 
      
 185 
     | 
    
         
            +
                    WebhookDataSweepUpdated,
         
     | 
| 
      
 186 
     | 
    
         
            +
                    WebhookDataRefundUpdated,
         
     | 
| 
      
 187 
     | 
    
         
            +
                    WebhookDataBankAccountUpdated,
         
     | 
| 
      
 188 
     | 
    
         
            +
                    WebhookDataTransferUpdated,
         
     | 
| 
      
 189 
     | 
    
         
            +
                    WebhookDataWalletTransactionUpdated,
         
     | 
| 
      
 190 
     | 
    
         
            +
                    WebhookDataDisputeUpdated,
         
     | 
| 
      
 191 
     | 
    
         
            +
                    WebhookDataDisputeCreated,
         
     | 
| 
      
 192 
     | 
    
         
            +
                    WebhookDataNetworkIDUpdated,
         
     | 
| 
      
 193 
     | 
    
         
            +
                ],
         
     | 
| 
      
 194 
     | 
    
         
            +
            )
         
     | 
| 
      
 195 
     | 
    
         
            +
            r"""The data for the webhook event. The contents are based on the event type."""
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 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 WebhookDataAccountCreatedTypedDict(TypedDict):
         
     | 
| 
      
 11 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
                foreign_id: NotRequired[str]
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            class WebhookDataAccountCreated(BaseModel):
         
     | 
| 
      
 16 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 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 WebhookDataAccountDeletedTypedDict(TypedDict):
         
     | 
| 
      
 11 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
                foreign_id: NotRequired[str]
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            class WebhookDataAccountDeleted(BaseModel):
         
     | 
| 
      
 16 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 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 WebhookDataAccountUpdatedTypedDict(TypedDict):
         
     | 
| 
      
 11 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
                foreign_id: NotRequired[str]
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            class WebhookDataAccountUpdated(BaseModel):
         
     | 
| 
      
 16 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 5 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 6 
     | 
    
         
            +
            from typing_extensions import Annotated, TypedDict
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            class WebhookDataBalanceUpdatedTypedDict(TypedDict):
         
     | 
| 
      
 10 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 11 
     | 
    
         
            +
                wallet_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            class WebhookDataBalanceUpdated(BaseModel):
         
     | 
| 
      
 15 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                wallet_id: Annotated[str, pydantic.Field(alias="walletID")]
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 5 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 6 
     | 
    
         
            +
            from typing_extensions import Annotated, TypedDict
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            class WebhookDataBankAccountCreatedTypedDict(TypedDict):
         
     | 
| 
      
 10 
     | 
    
         
            +
                bank_account_id: str
         
     | 
| 
      
 11 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            class WebhookDataBankAccountCreated(BaseModel):
         
     | 
| 
      
 15 
     | 
    
         
            +
                bank_account_id: Annotated[str, pydantic.Field(alias="bankAccountID")]
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 5 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 6 
     | 
    
         
            +
            from typing_extensions import Annotated, TypedDict
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            class WebhookDataBankAccountDeletedTypedDict(TypedDict):
         
     | 
| 
      
 10 
     | 
    
         
            +
                bank_account_id: str
         
     | 
| 
      
 11 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            class WebhookDataBankAccountDeleted(BaseModel):
         
     | 
| 
      
 15 
     | 
    
         
            +
                bank_account_id: Annotated[str, pydantic.Field(alias="bankAccountID")]
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
         @@ -0,0 +1,38 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .bankaccountexception import BankAccountException, BankAccountExceptionTypedDict
         
     | 
| 
      
 5 
     | 
    
         
            +
            from .bankaccountstatus import BankAccountStatus
         
     | 
| 
      
 6 
     | 
    
         
            +
            from .bankaccountstatusreason import BankAccountStatusReason
         
     | 
| 
      
 7 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 8 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 9 
     | 
    
         
            +
            from typing import Optional
         
     | 
| 
      
 10 
     | 
    
         
            +
            from typing_extensions import Annotated, NotRequired, TypedDict
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            class WebhookDataBankAccountUpdatedTypedDict(TypedDict):
         
     | 
| 
      
 14 
     | 
    
         
            +
                bank_account_id: str
         
     | 
| 
      
 15 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 16 
     | 
    
         
            +
                status: BankAccountStatus
         
     | 
| 
      
 17 
     | 
    
         
            +
                status_reason: BankAccountStatusReason
         
     | 
| 
      
 18 
     | 
    
         
            +
                r"""The reason the bank account status changed to the current value."""
         
     | 
| 
      
 19 
     | 
    
         
            +
                exception_details: NotRequired[BankAccountExceptionTypedDict]
         
     | 
| 
      
 20 
     | 
    
         
            +
                r"""Reason for, and details related to, an `errored` or `verificationFailed` bank account status."""
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            class WebhookDataBankAccountUpdated(BaseModel):
         
     | 
| 
      
 24 
     | 
    
         
            +
                bank_account_id: Annotated[str, pydantic.Field(alias="bankAccountID")]
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                status: BankAccountStatus
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                status_reason: Annotated[
         
     | 
| 
      
 31 
     | 
    
         
            +
                    BankAccountStatusReason, pydantic.Field(alias="statusReason")
         
     | 
| 
      
 32 
     | 
    
         
            +
                ]
         
     | 
| 
      
 33 
     | 
    
         
            +
                r"""The reason the bank account status changed to the current value."""
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                exception_details: Annotated[
         
     | 
| 
      
 36 
     | 
    
         
            +
                    Optional[BankAccountException], pydantic.Field(alias="exceptionDetails")
         
     | 
| 
      
 37 
     | 
    
         
            +
                ] = None
         
     | 
| 
      
 38 
     | 
    
         
            +
                r"""Reason for, and details related to, an `errored` or `verificationFailed` bank account status."""
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .cancellationstatus import CancellationStatus
         
     | 
| 
      
 5 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 6 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 7 
     | 
    
         
            +
            from typing_extensions import Annotated, TypedDict
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            class WebhookDataCancellationCreatedTypedDict(TypedDict):
         
     | 
| 
      
 11 
     | 
    
         
            +
                cancellation_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
                transfer_id: str
         
     | 
| 
      
 13 
     | 
    
         
            +
                status: CancellationStatus
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            class WebhookDataCancellationCreated(BaseModel):
         
     | 
| 
      
 17 
     | 
    
         
            +
                cancellation_id: Annotated[str, pydantic.Field(alias="cancellationID")]
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                transfer_id: Annotated[str, pydantic.Field(alias="transferID")]
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                status: CancellationStatus
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .cancellationstatus import CancellationStatus
         
     | 
| 
      
 5 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 6 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 7 
     | 
    
         
            +
            from typing_extensions import Annotated, TypedDict
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            class WebhookDataCancellationUpdatedTypedDict(TypedDict):
         
     | 
| 
      
 11 
     | 
    
         
            +
                cancellation_id: str
         
     | 
| 
      
 12 
     | 
    
         
            +
                transfer_id: str
         
     | 
| 
      
 13 
     | 
    
         
            +
                status: CancellationStatus
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            class WebhookDataCancellationUpdated(BaseModel):
         
     | 
| 
      
 17 
     | 
    
         
            +
                cancellation_id: Annotated[str, pydantic.Field(alias="cancellationID")]
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                transfer_id: Annotated[str, pydantic.Field(alias="transferID")]
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                status: CancellationStatus
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .capabilityid import CapabilityID
         
     | 
| 
      
 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 WebhookDataCapabilityRequestedTypedDict(TypedDict):
         
     | 
| 
      
 12 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 13 
     | 
    
         
            +
                capability_id: CapabilityID
         
     | 
| 
      
 14 
     | 
    
         
            +
                r"""Moov account capabilities.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
         
     | 
| 
      
 17 
     | 
    
         
            +
                """
         
     | 
| 
      
 18 
     | 
    
         
            +
                foreign_id: NotRequired[str]
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            class WebhookDataCapabilityRequested(BaseModel):
         
     | 
| 
      
 22 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                capability_id: Annotated[CapabilityID, pydantic.Field(alias="capabilityID")]
         
     | 
| 
      
 25 
     | 
    
         
            +
                r"""Moov account capabilities.
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
         
     | 
| 
      
 28 
     | 
    
         
            +
                """
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
         
     | 
| 
         @@ -0,0 +1,36 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 4 
     | 
    
         
            +
            from .capabilityid import CapabilityID
         
     | 
| 
      
 5 
     | 
    
         
            +
            from .capabilitystatus import CapabilityStatus
         
     | 
| 
      
 6 
     | 
    
         
            +
            from moovio_sdk.types import BaseModel
         
     | 
| 
      
 7 
     | 
    
         
            +
            import pydantic
         
     | 
| 
      
 8 
     | 
    
         
            +
            from typing import Optional
         
     | 
| 
      
 9 
     | 
    
         
            +
            from typing_extensions import Annotated, NotRequired, TypedDict
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            class WebhookDataCapabilityUpdatedTypedDict(TypedDict):
         
     | 
| 
      
 13 
     | 
    
         
            +
                account_id: str
         
     | 
| 
      
 14 
     | 
    
         
            +
                capability_id: CapabilityID
         
     | 
| 
      
 15 
     | 
    
         
            +
                r"""Moov account capabilities.
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
         
     | 
| 
      
 18 
     | 
    
         
            +
                """
         
     | 
| 
      
 19 
     | 
    
         
            +
                status: CapabilityStatus
         
     | 
| 
      
 20 
     | 
    
         
            +
                r"""The status of the capability requested for an account."""
         
     | 
| 
      
 21 
     | 
    
         
            +
                foreign_id: NotRequired[str]
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            class WebhookDataCapabilityUpdated(BaseModel):
         
     | 
| 
      
 25 
     | 
    
         
            +
                account_id: Annotated[str, pydantic.Field(alias="accountID")]
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                capability_id: Annotated[CapabilityID, pydantic.Field(alias="capabilityID")]
         
     | 
| 
      
 28 
     | 
    
         
            +
                r"""Moov account capabilities.
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                The `production-app` capability might appear in your list. This is a read-only capability that Moov requests and uses for account verification purposes. The capability remains active with your account and requires no additional action.
         
     | 
| 
      
 31 
     | 
    
         
            +
                """
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
                status: CapabilityStatus
         
     | 
| 
      
 34 
     | 
    
         
            +
                r"""The status of the capability requested for an account."""
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
         
     |