cybrid-api-bank-python 0.125.49__py3-none-any.whl → 0.125.59__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.
Potentially problematic release.
This version of cybrid-api-bank-python might be problematic. Click here for more details.
- cybrid_api_bank/__init__.py +1 -1
- cybrid_api_bank/api/accounts_bank_api.py +1 -1
- cybrid_api_bank/api/assets_bank_api.py +1 -1
- cybrid_api_bank/api/banks_bank_api.py +1 -1
- cybrid_api_bank/api/counterparties_bank_api.py +1 -1
- cybrid_api_bank/api/customers_bank_api.py +1 -1
- cybrid_api_bank/api/deposit_addresses_bank_api.py +1 -1
- cybrid_api_bank/api/deposit_bank_accounts_bank_api.py +1 -1
- cybrid_api_bank/api/executions_bank_api.py +312 -0
- cybrid_api_bank/api/external_bank_accounts_bank_api.py +1 -1
- cybrid_api_bank/api/external_wallets_bank_api.py +1 -1
- cybrid_api_bank/api/files_bank_api.py +1 -1
- cybrid_api_bank/api/identity_verifications_bank_api.py +1 -1
- cybrid_api_bank/api/invoices_bank_api.py +1 -1
- cybrid_api_bank/api/payment_instructions_bank_api.py +1 -1
- cybrid_api_bank/api/persona_sessions_bank_api.py +1 -1
- cybrid_api_bank/api/plans_bank_api.py +312 -0
- cybrid_api_bank/api/prices_bank_api.py +1 -1
- cybrid_api_bank/api/quotes_bank_api.py +1 -1
- cybrid_api_bank/api/symbols_bank_api.py +1 -1
- cybrid_api_bank/api/trades_bank_api.py +2 -2
- cybrid_api_bank/api/transfers_bank_api.py +1 -1
- cybrid_api_bank/api/workflows_bank_api.py +1 -1
- cybrid_api_bank/api_client.py +1 -1
- cybrid_api_bank/apis/__init__.py +2 -0
- cybrid_api_bank/configuration.py +2 -2
- cybrid_api_bank/exceptions.py +1 -1
- cybrid_api_bank/model/account.py +1 -1
- cybrid_api_bank/model/account_association.py +322 -0
- cybrid_api_bank/model/account_list.py +1 -1
- cybrid_api_bank/model/account_state.py +1 -1
- cybrid_api_bank/model/account_type.py +1 -1
- cybrid_api_bank/model/activity_limit.py +1 -1
- cybrid_api_bank/model/activity_side.py +1 -1
- cybrid_api_bank/model/activity_type.py +1 -1
- cybrid_api_bank/model/asset.py +1 -1
- cybrid_api_bank/model/asset_list.py +1 -1
- cybrid_api_bank/model/asset_types.py +1 -1
- cybrid_api_bank/model/bank.py +1 -1
- cybrid_api_bank/model/bank_feature.py +1 -1
- cybrid_api_bank/model/bank_list.py +1 -1
- cybrid_api_bank/model/bank_supported_payout_symbols_inner.py +1 -1
- cybrid_api_bank/model/bank_type.py +1 -1
- cybrid_api_bank/model/compliance_check.py +1 -1
- cybrid_api_bank/model/compliance_check_outcome.py +1 -1
- cybrid_api_bank/model/compliance_check_type.py +1 -1
- cybrid_api_bank/model/compliance_decision.py +1 -1
- cybrid_api_bank/model/compliance_decision_state.py +1 -1
- cybrid_api_bank/model/compliance_decision_type.py +1 -1
- cybrid_api_bank/model/counterparty.py +1 -1
- cybrid_api_bank/model/counterparty_address.py +1 -1
- cybrid_api_bank/model/counterparty_aliases_inner.py +1 -1
- cybrid_api_bank/model/counterparty_list.py +1 -1
- cybrid_api_bank/model/counterparty_name.py +1 -1
- cybrid_api_bank/model/counterparty_state.py +1 -1
- cybrid_api_bank/model/counterparty_type.py +1 -1
- cybrid_api_bank/model/customer.py +1 -1
- cybrid_api_bank/model/customer_address.py +1 -1
- cybrid_api_bank/model/customer_aliases_inner.py +1 -1
- cybrid_api_bank/model/customer_list.py +1 -1
- cybrid_api_bank/model/customer_name.py +1 -1
- cybrid_api_bank/model/customer_state.py +1 -1
- cybrid_api_bank/model/customer_type.py +1 -1
- cybrid_api_bank/model/deposit_address.py +1 -1
- cybrid_api_bank/model/deposit_address_format.py +1 -1
- cybrid_api_bank/model/deposit_address_list.py +1 -1
- cybrid_api_bank/model/deposit_address_state.py +1 -1
- cybrid_api_bank/model/deposit_bank_account.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_account_details_inner.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_counterparty_address.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_list.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_routing_number_type.py +1 -1
- cybrid_api_bank/model/deposit_bank_account_state.py +1 -1
- cybrid_api_bank/model/error_response.py +1 -1
- cybrid_api_bank/model/execution.py +370 -0
- cybrid_api_bank/model/execution_travel_rule_info.py +290 -0
- cybrid_api_bank/model/external_bank_account.py +1 -1
- cybrid_api_bank/model/external_bank_account_balances.py +1 -1
- cybrid_api_bank/model/external_bank_account_kind.py +1 -1
- cybrid_api_bank/model/external_bank_account_list.py +1 -1
- cybrid_api_bank/model/external_bank_account_pii_inner.py +1 -1
- cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py +1 -1
- cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py +1 -1
- cybrid_api_bank/model/external_bank_account_state.py +1 -1
- cybrid_api_bank/model/external_wallet.py +1 -1
- cybrid_api_bank/model/external_wallet_environment.py +1 -1
- cybrid_api_bank/model/external_wallet_list.py +1 -1
- cybrid_api_bank/model/external_wallet_state.py +1 -1
- cybrid_api_bank/model/fee_association.py +286 -0
- cybrid_api_bank/model/identification_number.py +1 -1
- cybrid_api_bank/model/identity_verification.py +1 -1
- cybrid_api_bank/model/identity_verification_business_associate.py +1 -1
- cybrid_api_bank/model/identity_verification_document.py +1 -1
- cybrid_api_bank/model/identity_verification_document_file.py +1 -1
- cybrid_api_bank/model/identity_verification_list.py +1 -1
- cybrid_api_bank/model/identity_verification_method.py +1 -1
- cybrid_api_bank/model/identity_verification_options.py +1 -1
- cybrid_api_bank/model/identity_verification_outcome.py +1 -1
- cybrid_api_bank/model/identity_verification_persona_state.py +1 -1
- cybrid_api_bank/model/identity_verification_state.py +1 -1
- cybrid_api_bank/model/identity_verification_type.py +1 -1
- cybrid_api_bank/model/identity_verification_with_details.py +1 -1
- cybrid_api_bank/model/identity_verification_with_details_pii.py +1 -1
- cybrid_api_bank/model/identity_verification_with_details_pii_address.py +1 -1
- cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py +1 -1
- cybrid_api_bank/model/identity_verification_with_details_pii_name.py +1 -1
- cybrid_api_bank/model/invoice.py +1 -1
- cybrid_api_bank/model/invoice_list.py +1 -1
- cybrid_api_bank/model/list_request_page.py +1 -1
- cybrid_api_bank/model/list_request_per_page.py +1 -1
- cybrid_api_bank/model/patch_bank.py +1 -1
- cybrid_api_bank/model/patch_customer.py +1 -1
- cybrid_api_bank/model/patch_external_bank_account.py +1 -1
- cybrid_api_bank/model/patch_transfer.py +1 -1
- cybrid_api_bank/model/patch_transfer_participant.py +1 -1
- cybrid_api_bank/model/payment_instruction.py +1 -1
- cybrid_api_bank/model/payment_instruction_list.py +1 -1
- cybrid_api_bank/model/persona_session.py +1 -1
- cybrid_api_bank/model/plan.py +366 -0
- cybrid_api_bank/model/plan_travel_rule_info.py +290 -0
- cybrid_api_bank/model/platform_file.py +1 -1
- cybrid_api_bank/model/platform_file_list.py +1 -1
- cybrid_api_bank/model/post_account.py +1 -1
- cybrid_api_bank/model/post_bank.py +1 -1
- cybrid_api_bank/model/post_bank_account_details.py +321 -0
- cybrid_api_bank/model/post_counterparty.py +1 -1
- cybrid_api_bank/model/post_counterparty_address.py +1 -1
- cybrid_api_bank/model/post_counterparty_aliases_inner.py +1 -1
- cybrid_api_bank/model/post_counterparty_name.py +1 -1
- cybrid_api_bank/model/post_customer.py +1 -1
- cybrid_api_bank/model/post_customer_address.py +1 -1
- cybrid_api_bank/model/post_customer_aliases_inner.py +1 -1
- cybrid_api_bank/model/post_customer_name.py +1 -1
- cybrid_api_bank/model/post_deposit_address.py +1 -1
- cybrid_api_bank/model/post_deposit_bank_account.py +1 -1
- cybrid_api_bank/model/post_execution.py +274 -0
- cybrid_api_bank/model/post_external_bank_account.py +7 -7
- cybrid_api_bank/model/post_external_bank_account_counterparty_address.py +1 -1
- cybrid_api_bank/model/post_external_bank_account_counterparty_name.py +1 -1
- cybrid_api_bank/model/post_external_wallet.py +1 -1
- cybrid_api_bank/model/post_fee.py +1 -1
- cybrid_api_bank/model/post_file.py +1 -1
- cybrid_api_bank/model/post_identification_number.py +1 -1
- cybrid_api_bank/model/post_identity_verification.py +1 -1
- cybrid_api_bank/model/post_identity_verification_address.py +1 -1
- cybrid_api_bank/model/post_identity_verification_aliases_inner.py +1 -1
- cybrid_api_bank/model/post_identity_verification_name.py +1 -1
- cybrid_api_bank/model/post_invoice.py +1 -1
- cybrid_api_bank/model/post_payment_instruction.py +1 -1
- cybrid_api_bank/model/post_persona_session.py +1 -1
- cybrid_api_bank/model/post_plan.py +317 -0
- cybrid_api_bank/model/post_plan_destination_account.py +278 -0
- cybrid_api_bank/model/post_plan_source_account.py +278 -0
- cybrid_api_bank/model/{post_external_bank_account_counterparty_bank_account.py → post_plan_travel_rule_info.py} +20 -21
- cybrid_api_bank/model/post_quote.py +1 -1
- cybrid_api_bank/model/post_quote_entry.py +1 -1
- cybrid_api_bank/model/post_supported_payout_symbols.py +1 -1
- cybrid_api_bank/model/post_trade.py +1 -1
- cybrid_api_bank/model/post_transfer.py +1 -1
- cybrid_api_bank/model/post_transfer_participant.py +1 -1
- cybrid_api_bank/model/post_ultimate_beneficial_owner.py +1 -1
- cybrid_api_bank/model/post_workflow.py +1 -1
- cybrid_api_bank/model/quote.py +1 -1
- cybrid_api_bank/model/quote_entry.py +1 -1
- cybrid_api_bank/model/quote_entry_destination_account.py +1 -1
- cybrid_api_bank/model/quote_entry_source_account.py +1 -1
- cybrid_api_bank/model/quote_list.py +1 -1
- cybrid_api_bank/model/quote_side.py +1 -1
- cybrid_api_bank/model/quote_type.py +1 -1
- cybrid_api_bank/model/stage.py +328 -0
- cybrid_api_bank/model/symbol_price.py +1 -1
- cybrid_api_bank/model/symbol_price_response.py +1 -1
- cybrid_api_bank/model/symbols.py +1 -1
- cybrid_api_bank/model/trade.py +3 -3
- cybrid_api_bank/model/trade_failure_code.py +1 -1
- cybrid_api_bank/model/trade_list.py +1 -1
- cybrid_api_bank/model/trade_side.py +1 -1
- cybrid_api_bank/model/trade_state.py +6 -5
- cybrid_api_bank/model/trade_type.py +1 -1
- cybrid_api_bank/model/transfer.py +1 -1
- cybrid_api_bank/model/transfer_account_type.py +1 -1
- cybrid_api_bank/model/transfer_destination_account.py +1 -1
- cybrid_api_bank/model/transfer_entry.py +1 -1
- cybrid_api_bank/model/transfer_entry_destination_account.py +1 -1
- cybrid_api_bank/model/transfer_failure_code.py +1 -1
- cybrid_api_bank/model/transfer_hold_details.py +1 -1
- cybrid_api_bank/model/transfer_list.py +1 -1
- cybrid_api_bank/model/transfer_participant.py +1 -1
- cybrid_api_bank/model/transfer_side.py +1 -1
- cybrid_api_bank/model/transfer_source_account.py +1 -1
- cybrid_api_bank/model/transfer_state.py +1 -1
- cybrid_api_bank/model/transfer_type.py +1 -1
- cybrid_api_bank/model/travel_rule_info_party.py +280 -0
- cybrid_api_bank/model/workflow.py +1 -1
- cybrid_api_bank/model/workflow_state.py +1 -1
- cybrid_api_bank/model/workflow_type.py +1 -1
- cybrid_api_bank/model/workflow_with_details.py +1 -1
- cybrid_api_bank/model/workflow_with_details_all_of.py +1 -1
- cybrid_api_bank/model/workflows_list.py +1 -1
- cybrid_api_bank/model_utils.py +1 -1
- cybrid_api_bank/models/__init__.py +14 -1
- cybrid_api_bank/rest.py +1 -1
- {cybrid_api_bank_python-0.125.49.dist-info → cybrid_api_bank_python-0.125.59.dist-info}/METADATA +1 -1
- cybrid_api_bank_python-0.125.59.dist-info/RECORD +209 -0
- cybrid_api_bank_python-0.125.49.dist-info/RECORD +0 -194
- {cybrid_api_bank_python-0.125.49.dist-info → cybrid_api_bank_python-0.125.59.dist-info}/WHEEL +0 -0
- {cybrid_api_bank_python-0.125.49.dist-info → cybrid_api_bank_python-0.125.59.dist-info}/top_level.txt +0 -0
cybrid_api_bank/model_utils.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# Cybrid API documentation Welcome to Cybrid, an all-in-one crypto platform that enables you to easily **build** and **launch** white-label crypto products or services. In these documents, you'll find details on how our REST API operates and generally how our platform functions. If you're looking for our UI SDK Widgets for Web or Mobile (iOS/Android), generated API clients, or demo applications, head over to our [Github repo](https://github.com/Cybrid-app). 💡 We recommend bookmarking the [Cybrid LinkTree](https://linktr.ee/cybridtechnologies) which contains many helpful links to platform resources. ## Getting Started This is Cybrid's public interactive API documentation, which allows you to fully test our APIs. If you'd like to use a different tool to exercise our APIs, you can download the [Open API 3.0 yaml](https://bank.production.cybrid.app/api/schema/v1/swagger.yaml) for import. If you're new to our APIs and the Cybrid Platform, follow the below guides to get set up and familiar with the platform: 1. [Introduction](https://docs.cybrid.xyz/docs/introduction) 2. [Platform Introduction](https://docs.cybrid.xyz/docs/how-is-cybrid-architected) 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/testing-with-hosted-web-demo-app) In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/how-do-i-get-started-with-the-sandbox), we walk you through how to use the [Cybrid Sandbox](https://id.sandbox.cybrid.app/) to create a test bank and generate API keys. In [Getting Ready for Trading](https://kb.cybrid.xyz/getting-ready-for-trading), we walk through creating customers, customer identities, accounts, as well as executing quotes and trades. ## Working with the Cybrid Platform There are three primary ways you can interact with the Cybrid platform: 1. Directly via our RESTful API (this documentation) 2. Using our API clients available in a variety of languages ([Angular](https://github.com/Cybrid-app/cybrid-api-bank-angular), [Java](https://github.com/Cybrid-app/cybrid-api-bank-java), [Kotlin](https://github.com/Cybrid-app/cybrid-api-bank-kotlin), [Python](https://github.com/Cybrid-app/cybrid-api-bank-python), [Ruby](https://github.com/Cybrid-app/cybrid-api-bank-ruby), [Swift](https://github.com/Cybrid-app/cybrid-api-bank-swift) or [Typescript](https://github.com/Cybrid-app/cybrid-api-bank-typescript)) 3. Integrating a platform specific SDK ([Web](https://github.com/Cybrid-app/cybrid-sdk-web), [Android](https://github.com/Cybrid-app/cybrid-sdk-android), [iOS](https://github.com/Cybrid-app/cybrid-sdk-ios)) Our complete set of APIs allows you to manage resources across three distinct areas: your `Organization`, your `Banks` and your `Identities`. For most of your testing and interaction you'll be using the `Bank` API, which is where the majority of APIs reside. *The complete set of APIs can be found on the following pages:* | API | Description | |------------------------------------------------------------------|-------------------------------------------------------------| | [Organization API](https://organization.production.cybrid.app/api/schema/swagger-ui) | APIs to manage organizations | | [Bank API](https://bank.production.cybrid.app/api/schema/swagger-ui) | APIs to manage banks (and all downstream customer activity) | | [Identities API](https://id.production.cybrid.app/api/schema/swagger-ui) | APIs to manage organization and bank identities | For questions please contact [Support](mailto:support@cybrid.xyz) at any time for assistance, or contact the [Product Team](mailto:product@cybrid.xyz) for product suggestions. ## Authenticating with the API The Cybrid Platform uses OAuth 2.0 Bearer Tokens to authenticate requests to the platform. Credentials to create `Organization` and `Bank` tokens can be generated via the [Cybrid Sandbox](https://id.production.cybrid.app). Access tokens can be generated for a `Customer` as well via the [Cybrid IdP](https://id.production.cybrid.app) as well. An `Organization` access token applies broadly to the whole Organization and all of its `Banks`, whereas, a `Bank` access token is specific to an individual Bank. `Customer` tokens, similarly, are scoped to a specific customer in a bank. Both `Organization` and `Bank` tokens can be created using the OAuth Client Credential Grant flow. Each Organization and Bank has its own unique `Client ID` and `Secret` that allows for machine-to-machine authentication. A `Bank` can then generate `Customer` access tokens via API using our [Identities API](https://id.production.cybrid.app/api/schema/swagger-ui). <font color=\"orange\">**⚠️ Never share your Client ID or Secret publicly or in your source code repository.**</font> Your `Client ID` and `Secret` can be exchanged for a time-limited `Bearer Token` by interacting with the Cybrid Identity Provider or through interacting with the **Authorize** button in this document. The following curl command can be used to quickly generate a `Bearer Token` for use in testing the API or demo applications. ``` # Example request when using Bank credentials curl -X POST https://id.production.cybrid.app/oauth/token -d '{ \"grant_type\": \"client_credentials\", \"client_id\": \"<Your Client ID>\", \"client_secret\": \"<Your Secret>\", \"scope\": \"banks:read banks:write bank_applications:execute accounts:read accounts:execute counterparties:read counterparties:pii:read counterparties:write counterparties:execute customers:read customers:pii:read customers:write customers:execute prices:read quotes:execute quotes:read trades:execute trades:read transfers:execute transfers:read transfers:write external_bank_accounts:read external_bank_accounts:pii:read external_bank_accounts:write external_bank_accounts:execute external_wallets:read external_wallets:execute workflows:read workflows:execute deposit_addresses:read deposit_addresses:execute deposit_bank_accounts:read deposit_bank_accounts:execute invoices:read invoices:write invoices:execute identity_verifications:read identity_verifications:pii:read identity_verifications:write identity_verifications:execute persona_sessions:execute plans:execute plans:read executions:execute executions:read files:read files:pii:read files:execute\" }' -H \"Content-Type: application/json\" # When using Organization credentials set `scope` to 'organizations:read organizations:write organization_applications:execute banks:read banks:write banks:execute bank_applications:execute users:read users:write users:execute counterparties:read counterparties:pii:read customers:read customers:pii:read accounts:read prices:read quotes:execute quotes:read trades:execute trades:read transfers:read transfers:write transfers:execute external_bank_accounts:read external_bank_accounts:pii:read external_wallets:read workflows:read deposit_addresses:read deposit_bank_accounts:read invoices:read subscriptions:read subscriptions:write subscriptions:execute subscription_events:read subscription_events:execute identity_verifications:read identity_verifications:pii:read identity_verifications:execute persona_sessions:execute plans:execute plans:read executions:execute executions:read files:read files:pii:read files:execute' ``` <font color=\"orange\">**⚠️ Note: The above curl will create a bearer token with full scope access. Delete scopes if you'd like to restrict access.**</font> ## Authentication Scopes The Cybrid platform supports the use of scopes to control the level of access a token is limited to. Scopes do not grant access to resources; instead, they provide limits, in support of the least privilege principal. The following scopes are available on the platform and can be requested when generating either an Organization, Bank or Customer token. Generally speaking, the _Read_ scope is required to read and list resources, the _Write_ scope is required to update a resource and the _Execute_ scope is required to create a resource. | Resource | Read scope (Token Type) | Write scope (Token Type) | Execute scope (Token Type) | |-----------------------|------------------------------------------------------------|-----------------------------------------------|--------------------------------------------------| | Account | accounts:read (Organization, Bank, Customer) | | accounts:execute (Bank, Customer) | | Bank | banks:read (Organization, Bank) | banks:write (Organization, Bank) | banks:execute (Organization) | | Customer | customers:read (Organization, Bank, Customer) | customers:write (Bank, Customer) | customers:execute (Bank) | | Counterparty | counterparties:read (Organization, Bank, Customer) | counterparties:write (Bank, Customer) | counterparties:execute (Bank) | | Deposit Address | deposit_addresses:read (Organization, Bank, Customer) | deposit_addresses:write (Bank, Customer) | deposit_addresses:execute (Bank, Customer) | | External Bank Account | external_bank_accounts:read (Organization, Bank, Customer) | external_bank_accounts:write (Bank, Customer) | external_bank_accounts:execute (Bank, Customer) | | External Wallet | external_wallet:read (Organization, Bank, Customer) | | external_wallet:execute (Bank, Customer) | | Organization | organizations:read (Organization) | organizations:write (Organization) | | | User | users:read (Organization) | | users:execute (Organization) | | Price | prices:read (Bank, Customer) | | | | Quote | quotes:read (Organization, Bank, Customer) | | quotes:execute (Organization, Bank, Customer) | | Trade | trades:read (Organization, Bank, Customer) | | trades:execute (Organization, Bank, Customer) | | Transfer | transfers:read (Organization, Bank, Customer) | | transfers:execute (Organization, Bank, Customer) | | Workflow | workflows:read (Organization, Bank, Customer) | | workflows:execute (Bank, Customer) | | Invoice | invoices:read (Organization, Bank, Customer) | invoices:write (Bank, Customer) | invoices:execute (Bank, Customer) | ## Available Endpoints The available APIs for the [Identity](https://id.production.cybrid.app/api/schema/swagger-ui), [Organization](https://organization.production.cybrid.app/api/schema/swagger-ui) and [Bank](https://bank.production.cybrid.app/api/schema/swagger-ui) API services are listed below: | API Service | Model | API Endpoint Path | Description | |--------------|----------------------|--------------------------------|---------------------------------------------------------------------------------------------------| | Identity | Bank | /api/bank_applications | Create and list banks | | Identity | CustomerToken | /api/customer_tokens | Create customer JWT access tokens | | Identity | Organization | /api/organization_applications | Create and list organizations | | Identity | Organization | /api/users | Create and list organization users | | Organization | Organization | /api/organizations | APIs to retrieve and update organization name | | Bank | Account | /api/accounts | Create and list accounts, which hold a specific asset for a customers | | Bank | Asset | /api/assets | Get a list of assets supported by the platform (ex: BTC, ETH) | | Bank | Bank | /api/banks | Create, update and list banks, the parent to customers, accounts, etc | | Bank | Customer | /api/customers | Create and list customers | | Bank | Counterparty | /api/counterparties | Create and list counterparties | | Bank | DepositAddress | /api/deposit_addresses | Create, get and list deposit addresses | | Bank | ExternalBankAccount | /api/external_bank_accounts | Create, get and list external bank accounts, which connect customer bank accounts to the platform | | Bank | ExternalWallet | /api/external_wallets | Create, get, list and delete external wallets, which connect customer wallets to the platform | | Bank | IdentityVerification | /api/identity_verifications | Create and list identity verifications, which are performed on customers for KYC | | Bank | Invoice | /api/invoices | Create, get, cancel and list invoices | | Bank | PaymentInstruction | /api/payment_instructions | Create, get and list payment instructions for invoices | | Bank | Price | /api/prices | Get the current prices for assets on the platform | | Bank | Quote | /api/quotes | Create and list quotes, which are required to execute trades | | Bank | Symbol | /api/symbols | Get a list of symbols supported for trade (ex: BTC-USD) | | Bank | Trade | /api/trades | Create and list trades, which buy or sell cryptocurrency | | Bank | Transfer | /api/transfers | Create, get and list transfers (e.g., funding, book) | | Bank | Workflow | /api/workflows | Create, get and list workflows | ## Understanding Object Models & Endpoints **Organizations** An `Organization` is meant to represent the organization partnering with Cybrid to use our platform. An `Organization` typically does not directly interact with `customers`. Instead, an Organization has one or more `banks`, which encompass the financial service offerings of the platform. **Banks** A `Bank` is owned by an `Organization` and can be thought of as an environment or container for `customers` and product offerings. Banks are created in either `Sandbox` or `Production` mode, where `Sandbox` is the environment that you would test, prototype and build in prior to moving to `Production`. An `Organization` can have multiple `banks`, in either `Sandbox` or `Production` environments. A `Sandbox Bank` will be backed by stubbed data and process flows. For instance, funding source transfer processes as well as trades will be simulated rather than performed, however asset prices are representative of real-world values. You have an unlimited amount of simulated fiat currency for testing purposes. **Customers** `Customers` represent your banking users on the platform. At present, we offer support for `Individuals` as Customers. `Customers` must be verified (i.e., KYC'd) in our system before they can play any part on the platform, which means they must have an associated and a passing `Identity Verification`. See the Identity Verifications section for more details on how a customer can be verified. `Customers` must also have an `Account` to be able to transact, in the desired asset class. See the Accounts APIs for more details on setting up accounts for the customer. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: v0.125.
|
|
6
|
+
The version of the OpenAPI document: v0.125.59
|
|
7
7
|
Contact: support@cybrid.app
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
# sys.setrecursionlimit(n)
|
|
11
11
|
|
|
12
12
|
from cybrid_api_bank.model.account import Account
|
|
13
|
+
from cybrid_api_bank.model.account_association import AccountAssociation
|
|
13
14
|
from cybrid_api_bank.model.account_list import AccountList
|
|
14
15
|
from cybrid_api_bank.model.account_state import AccountState
|
|
15
16
|
from cybrid_api_bank.model.account_type import AccountType
|
|
@@ -56,6 +57,8 @@ from cybrid_api_bank.model.deposit_bank_account_routing_details_inner import Dep
|
|
|
56
57
|
from cybrid_api_bank.model.deposit_bank_account_routing_number_type import DepositBankAccountRoutingNumberType
|
|
57
58
|
from cybrid_api_bank.model.deposit_bank_account_state import DepositBankAccountState
|
|
58
59
|
from cybrid_api_bank.model.error_response import ErrorResponse
|
|
60
|
+
from cybrid_api_bank.model.execution import Execution
|
|
61
|
+
from cybrid_api_bank.model.execution_travel_rule_info import ExecutionTravelRuleInfo
|
|
59
62
|
from cybrid_api_bank.model.external_bank_account import ExternalBankAccount
|
|
60
63
|
from cybrid_api_bank.model.external_bank_account_balances import ExternalBankAccountBalances
|
|
61
64
|
from cybrid_api_bank.model.external_bank_account_kind import ExternalBankAccountKind
|
|
@@ -68,6 +71,7 @@ from cybrid_api_bank.model.external_wallet import ExternalWallet
|
|
|
68
71
|
from cybrid_api_bank.model.external_wallet_environment import ExternalWalletEnvironment
|
|
69
72
|
from cybrid_api_bank.model.external_wallet_list import ExternalWalletList
|
|
70
73
|
from cybrid_api_bank.model.external_wallet_state import ExternalWalletState
|
|
74
|
+
from cybrid_api_bank.model.fee_association import FeeAssociation
|
|
71
75
|
from cybrid_api_bank.model.identification_number import IdentificationNumber
|
|
72
76
|
from cybrid_api_bank.model.identity_verification import IdentityVerification
|
|
73
77
|
from cybrid_api_bank.model.identity_verification_business_associate import IdentityVerificationBusinessAssociate
|
|
@@ -97,10 +101,13 @@ from cybrid_api_bank.model.patch_transfer_participant import PatchTransferPartic
|
|
|
97
101
|
from cybrid_api_bank.model.payment_instruction import PaymentInstruction
|
|
98
102
|
from cybrid_api_bank.model.payment_instruction_list import PaymentInstructionList
|
|
99
103
|
from cybrid_api_bank.model.persona_session import PersonaSession
|
|
104
|
+
from cybrid_api_bank.model.plan import Plan
|
|
105
|
+
from cybrid_api_bank.model.plan_travel_rule_info import PlanTravelRuleInfo
|
|
100
106
|
from cybrid_api_bank.model.platform_file import PlatformFile
|
|
101
107
|
from cybrid_api_bank.model.platform_file_list import PlatformFileList
|
|
102
108
|
from cybrid_api_bank.model.post_account import PostAccount
|
|
103
109
|
from cybrid_api_bank.model.post_bank import PostBank
|
|
110
|
+
from cybrid_api_bank.model.post_bank_account_details import PostBankAccountDetails
|
|
104
111
|
from cybrid_api_bank.model.post_counterparty import PostCounterparty
|
|
105
112
|
from cybrid_api_bank.model.post_counterparty_address import PostCounterpartyAddress
|
|
106
113
|
from cybrid_api_bank.model.post_counterparty_aliases_inner import PostCounterpartyAliasesInner
|
|
@@ -111,9 +118,9 @@ from cybrid_api_bank.model.post_customer_aliases_inner import PostCustomerAliase
|
|
|
111
118
|
from cybrid_api_bank.model.post_customer_name import PostCustomerName
|
|
112
119
|
from cybrid_api_bank.model.post_deposit_address import PostDepositAddress
|
|
113
120
|
from cybrid_api_bank.model.post_deposit_bank_account import PostDepositBankAccount
|
|
121
|
+
from cybrid_api_bank.model.post_execution import PostExecution
|
|
114
122
|
from cybrid_api_bank.model.post_external_bank_account import PostExternalBankAccount
|
|
115
123
|
from cybrid_api_bank.model.post_external_bank_account_counterparty_address import PostExternalBankAccountCounterpartyAddress
|
|
116
|
-
from cybrid_api_bank.model.post_external_bank_account_counterparty_bank_account import PostExternalBankAccountCounterpartyBankAccount
|
|
117
124
|
from cybrid_api_bank.model.post_external_bank_account_counterparty_name import PostExternalBankAccountCounterpartyName
|
|
118
125
|
from cybrid_api_bank.model.post_external_wallet import PostExternalWallet
|
|
119
126
|
from cybrid_api_bank.model.post_fee import PostFee
|
|
@@ -126,6 +133,10 @@ from cybrid_api_bank.model.post_identity_verification_name import PostIdentityVe
|
|
|
126
133
|
from cybrid_api_bank.model.post_invoice import PostInvoice
|
|
127
134
|
from cybrid_api_bank.model.post_payment_instruction import PostPaymentInstruction
|
|
128
135
|
from cybrid_api_bank.model.post_persona_session import PostPersonaSession
|
|
136
|
+
from cybrid_api_bank.model.post_plan import PostPlan
|
|
137
|
+
from cybrid_api_bank.model.post_plan_destination_account import PostPlanDestinationAccount
|
|
138
|
+
from cybrid_api_bank.model.post_plan_source_account import PostPlanSourceAccount
|
|
139
|
+
from cybrid_api_bank.model.post_plan_travel_rule_info import PostPlanTravelRuleInfo
|
|
129
140
|
from cybrid_api_bank.model.post_quote import PostQuote
|
|
130
141
|
from cybrid_api_bank.model.post_quote_entry import PostQuoteEntry
|
|
131
142
|
from cybrid_api_bank.model.post_supported_payout_symbols import PostSupportedPayoutSymbols
|
|
@@ -141,6 +152,7 @@ from cybrid_api_bank.model.quote_entry_source_account import QuoteEntrySourceAcc
|
|
|
141
152
|
from cybrid_api_bank.model.quote_list import QuoteList
|
|
142
153
|
from cybrid_api_bank.model.quote_side import QuoteSide
|
|
143
154
|
from cybrid_api_bank.model.quote_type import QuoteType
|
|
155
|
+
from cybrid_api_bank.model.stage import Stage
|
|
144
156
|
from cybrid_api_bank.model.symbol_price import SymbolPrice
|
|
145
157
|
from cybrid_api_bank.model.symbol_price_response import SymbolPriceResponse
|
|
146
158
|
from cybrid_api_bank.model.symbols import Symbols
|
|
@@ -163,6 +175,7 @@ from cybrid_api_bank.model.transfer_side import TransferSide
|
|
|
163
175
|
from cybrid_api_bank.model.transfer_source_account import TransferSourceAccount
|
|
164
176
|
from cybrid_api_bank.model.transfer_state import TransferState
|
|
165
177
|
from cybrid_api_bank.model.transfer_type import TransferType
|
|
178
|
+
from cybrid_api_bank.model.travel_rule_info_party import TravelRuleInfoParty
|
|
166
179
|
from cybrid_api_bank.model.workflow import Workflow
|
|
167
180
|
from cybrid_api_bank.model.workflow_state import WorkflowState
|
|
168
181
|
from cybrid_api_bank.model.workflow_type import WorkflowType
|
cybrid_api_bank/rest.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# Cybrid API documentation Welcome to Cybrid, an all-in-one crypto platform that enables you to easily **build** and **launch** white-label crypto products or services. In these documents, you'll find details on how our REST API operates and generally how our platform functions. If you're looking for our UI SDK Widgets for Web or Mobile (iOS/Android), generated API clients, or demo applications, head over to our [Github repo](https://github.com/Cybrid-app). 💡 We recommend bookmarking the [Cybrid LinkTree](https://linktr.ee/cybridtechnologies) which contains many helpful links to platform resources. ## Getting Started This is Cybrid's public interactive API documentation, which allows you to fully test our APIs. If you'd like to use a different tool to exercise our APIs, you can download the [Open API 3.0 yaml](https://bank.production.cybrid.app/api/schema/v1/swagger.yaml) for import. If you're new to our APIs and the Cybrid Platform, follow the below guides to get set up and familiar with the platform: 1. [Introduction](https://docs.cybrid.xyz/docs/introduction) 2. [Platform Introduction](https://docs.cybrid.xyz/docs/how-is-cybrid-architected) 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/testing-with-hosted-web-demo-app) In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/how-do-i-get-started-with-the-sandbox), we walk you through how to use the [Cybrid Sandbox](https://id.sandbox.cybrid.app/) to create a test bank and generate API keys. In [Getting Ready for Trading](https://kb.cybrid.xyz/getting-ready-for-trading), we walk through creating customers, customer identities, accounts, as well as executing quotes and trades. ## Working with the Cybrid Platform There are three primary ways you can interact with the Cybrid platform: 1. Directly via our RESTful API (this documentation) 2. Using our API clients available in a variety of languages ([Angular](https://github.com/Cybrid-app/cybrid-api-bank-angular), [Java](https://github.com/Cybrid-app/cybrid-api-bank-java), [Kotlin](https://github.com/Cybrid-app/cybrid-api-bank-kotlin), [Python](https://github.com/Cybrid-app/cybrid-api-bank-python), [Ruby](https://github.com/Cybrid-app/cybrid-api-bank-ruby), [Swift](https://github.com/Cybrid-app/cybrid-api-bank-swift) or [Typescript](https://github.com/Cybrid-app/cybrid-api-bank-typescript)) 3. Integrating a platform specific SDK ([Web](https://github.com/Cybrid-app/cybrid-sdk-web), [Android](https://github.com/Cybrid-app/cybrid-sdk-android), [iOS](https://github.com/Cybrid-app/cybrid-sdk-ios)) Our complete set of APIs allows you to manage resources across three distinct areas: your `Organization`, your `Banks` and your `Identities`. For most of your testing and interaction you'll be using the `Bank` API, which is where the majority of APIs reside. *The complete set of APIs can be found on the following pages:* | API | Description | |------------------------------------------------------------------|-------------------------------------------------------------| | [Organization API](https://organization.production.cybrid.app/api/schema/swagger-ui) | APIs to manage organizations | | [Bank API](https://bank.production.cybrid.app/api/schema/swagger-ui) | APIs to manage banks (and all downstream customer activity) | | [Identities API](https://id.production.cybrid.app/api/schema/swagger-ui) | APIs to manage organization and bank identities | For questions please contact [Support](mailto:support@cybrid.xyz) at any time for assistance, or contact the [Product Team](mailto:product@cybrid.xyz) for product suggestions. ## Authenticating with the API The Cybrid Platform uses OAuth 2.0 Bearer Tokens to authenticate requests to the platform. Credentials to create `Organization` and `Bank` tokens can be generated via the [Cybrid Sandbox](https://id.production.cybrid.app). Access tokens can be generated for a `Customer` as well via the [Cybrid IdP](https://id.production.cybrid.app) as well. An `Organization` access token applies broadly to the whole Organization and all of its `Banks`, whereas, a `Bank` access token is specific to an individual Bank. `Customer` tokens, similarly, are scoped to a specific customer in a bank. Both `Organization` and `Bank` tokens can be created using the OAuth Client Credential Grant flow. Each Organization and Bank has its own unique `Client ID` and `Secret` that allows for machine-to-machine authentication. A `Bank` can then generate `Customer` access tokens via API using our [Identities API](https://id.production.cybrid.app/api/schema/swagger-ui). <font color=\"orange\">**⚠️ Never share your Client ID or Secret publicly or in your source code repository.**</font> Your `Client ID` and `Secret` can be exchanged for a time-limited `Bearer Token` by interacting with the Cybrid Identity Provider or through interacting with the **Authorize** button in this document. The following curl command can be used to quickly generate a `Bearer Token` for use in testing the API or demo applications. ``` # Example request when using Bank credentials curl -X POST https://id.production.cybrid.app/oauth/token -d '{ \"grant_type\": \"client_credentials\", \"client_id\": \"<Your Client ID>\", \"client_secret\": \"<Your Secret>\", \"scope\": \"banks:read banks:write bank_applications:execute accounts:read accounts:execute counterparties:read counterparties:pii:read counterparties:write counterparties:execute customers:read customers:pii:read customers:write customers:execute prices:read quotes:execute quotes:read trades:execute trades:read transfers:execute transfers:read transfers:write external_bank_accounts:read external_bank_accounts:pii:read external_bank_accounts:write external_bank_accounts:execute external_wallets:read external_wallets:execute workflows:read workflows:execute deposit_addresses:read deposit_addresses:execute deposit_bank_accounts:read deposit_bank_accounts:execute invoices:read invoices:write invoices:execute identity_verifications:read identity_verifications:pii:read identity_verifications:write identity_verifications:execute persona_sessions:execute plans:execute plans:read executions:execute executions:read files:read files:pii:read files:execute\" }' -H \"Content-Type: application/json\" # When using Organization credentials set `scope` to 'organizations:read organizations:write organization_applications:execute banks:read banks:write banks:execute bank_applications:execute users:read users:write users:execute counterparties:read counterparties:pii:read customers:read customers:pii:read accounts:read prices:read quotes:execute quotes:read trades:execute trades:read transfers:read transfers:write transfers:execute external_bank_accounts:read external_bank_accounts:pii:read external_wallets:read workflows:read deposit_addresses:read deposit_bank_accounts:read invoices:read subscriptions:read subscriptions:write subscriptions:execute subscription_events:read subscription_events:execute identity_verifications:read identity_verifications:pii:read identity_verifications:execute persona_sessions:execute plans:execute plans:read executions:execute executions:read files:read files:pii:read files:execute' ``` <font color=\"orange\">**⚠️ Note: The above curl will create a bearer token with full scope access. Delete scopes if you'd like to restrict access.**</font> ## Authentication Scopes The Cybrid platform supports the use of scopes to control the level of access a token is limited to. Scopes do not grant access to resources; instead, they provide limits, in support of the least privilege principal. The following scopes are available on the platform and can be requested when generating either an Organization, Bank or Customer token. Generally speaking, the _Read_ scope is required to read and list resources, the _Write_ scope is required to update a resource and the _Execute_ scope is required to create a resource. | Resource | Read scope (Token Type) | Write scope (Token Type) | Execute scope (Token Type) | |-----------------------|------------------------------------------------------------|-----------------------------------------------|--------------------------------------------------| | Account | accounts:read (Organization, Bank, Customer) | | accounts:execute (Bank, Customer) | | Bank | banks:read (Organization, Bank) | banks:write (Organization, Bank) | banks:execute (Organization) | | Customer | customers:read (Organization, Bank, Customer) | customers:write (Bank, Customer) | customers:execute (Bank) | | Counterparty | counterparties:read (Organization, Bank, Customer) | counterparties:write (Bank, Customer) | counterparties:execute (Bank) | | Deposit Address | deposit_addresses:read (Organization, Bank, Customer) | deposit_addresses:write (Bank, Customer) | deposit_addresses:execute (Bank, Customer) | | External Bank Account | external_bank_accounts:read (Organization, Bank, Customer) | external_bank_accounts:write (Bank, Customer) | external_bank_accounts:execute (Bank, Customer) | | External Wallet | external_wallet:read (Organization, Bank, Customer) | | external_wallet:execute (Bank, Customer) | | Organization | organizations:read (Organization) | organizations:write (Organization) | | | User | users:read (Organization) | | users:execute (Organization) | | Price | prices:read (Bank, Customer) | | | | Quote | quotes:read (Organization, Bank, Customer) | | quotes:execute (Organization, Bank, Customer) | | Trade | trades:read (Organization, Bank, Customer) | | trades:execute (Organization, Bank, Customer) | | Transfer | transfers:read (Organization, Bank, Customer) | | transfers:execute (Organization, Bank, Customer) | | Workflow | workflows:read (Organization, Bank, Customer) | | workflows:execute (Bank, Customer) | | Invoice | invoices:read (Organization, Bank, Customer) | invoices:write (Bank, Customer) | invoices:execute (Bank, Customer) | ## Available Endpoints The available APIs for the [Identity](https://id.production.cybrid.app/api/schema/swagger-ui), [Organization](https://organization.production.cybrid.app/api/schema/swagger-ui) and [Bank](https://bank.production.cybrid.app/api/schema/swagger-ui) API services are listed below: | API Service | Model | API Endpoint Path | Description | |--------------|----------------------|--------------------------------|---------------------------------------------------------------------------------------------------| | Identity | Bank | /api/bank_applications | Create and list banks | | Identity | CustomerToken | /api/customer_tokens | Create customer JWT access tokens | | Identity | Organization | /api/organization_applications | Create and list organizations | | Identity | Organization | /api/users | Create and list organization users | | Organization | Organization | /api/organizations | APIs to retrieve and update organization name | | Bank | Account | /api/accounts | Create and list accounts, which hold a specific asset for a customers | | Bank | Asset | /api/assets | Get a list of assets supported by the platform (ex: BTC, ETH) | | Bank | Bank | /api/banks | Create, update and list banks, the parent to customers, accounts, etc | | Bank | Customer | /api/customers | Create and list customers | | Bank | Counterparty | /api/counterparties | Create and list counterparties | | Bank | DepositAddress | /api/deposit_addresses | Create, get and list deposit addresses | | Bank | ExternalBankAccount | /api/external_bank_accounts | Create, get and list external bank accounts, which connect customer bank accounts to the platform | | Bank | ExternalWallet | /api/external_wallets | Create, get, list and delete external wallets, which connect customer wallets to the platform | | Bank | IdentityVerification | /api/identity_verifications | Create and list identity verifications, which are performed on customers for KYC | | Bank | Invoice | /api/invoices | Create, get, cancel and list invoices | | Bank | PaymentInstruction | /api/payment_instructions | Create, get and list payment instructions for invoices | | Bank | Price | /api/prices | Get the current prices for assets on the platform | | Bank | Quote | /api/quotes | Create and list quotes, which are required to execute trades | | Bank | Symbol | /api/symbols | Get a list of symbols supported for trade (ex: BTC-USD) | | Bank | Trade | /api/trades | Create and list trades, which buy or sell cryptocurrency | | Bank | Transfer | /api/transfers | Create, get and list transfers (e.g., funding, book) | | Bank | Workflow | /api/workflows | Create, get and list workflows | ## Understanding Object Models & Endpoints **Organizations** An `Organization` is meant to represent the organization partnering with Cybrid to use our platform. An `Organization` typically does not directly interact with `customers`. Instead, an Organization has one or more `banks`, which encompass the financial service offerings of the platform. **Banks** A `Bank` is owned by an `Organization` and can be thought of as an environment or container for `customers` and product offerings. Banks are created in either `Sandbox` or `Production` mode, where `Sandbox` is the environment that you would test, prototype and build in prior to moving to `Production`. An `Organization` can have multiple `banks`, in either `Sandbox` or `Production` environments. A `Sandbox Bank` will be backed by stubbed data and process flows. For instance, funding source transfer processes as well as trades will be simulated rather than performed, however asset prices are representative of real-world values. You have an unlimited amount of simulated fiat currency for testing purposes. **Customers** `Customers` represent your banking users on the platform. At present, we offer support for `Individuals` as Customers. `Customers` must be verified (i.e., KYC'd) in our system before they can play any part on the platform, which means they must have an associated and a passing `Identity Verification`. See the Identity Verifications section for more details on how a customer can be verified. `Customers` must also have an `Account` to be able to transact, in the desired asset class. See the Accounts APIs for more details on setting up accounts for the customer. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: v0.125.
|
|
6
|
+
The version of the OpenAPI document: v0.125.59
|
|
7
7
|
Contact: support@cybrid.app
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
cybrid_api_bank/__init__.py,sha256=PSqK2O2W8MfNi8s36ICoxNyH2BXvqnyoC0oTs8f7nVI,18155
|
|
2
|
+
cybrid_api_bank/api_client.py,sha256=zu85Qy7Q0GSBr3V6Zc1iTpJ-Qhe7LqFXYxpFpv4sL5g,56487
|
|
3
|
+
cybrid_api_bank/configuration.py,sha256=O1ARYKZKHzMKwVmleAn7lvt9vy7PkJphk5MRuVBlZQk,34390
|
|
4
|
+
cybrid_api_bank/exceptions.py,sha256=HiU3lyCQNoIVcPa4UAJPtNZr_g9jKitWOITT3hE5McA,22479
|
|
5
|
+
cybrid_api_bank/model_utils.py,sha256=BgZHEMTiyyi25VOwloELU27hWZPx_LPrCrlsQmtw_dY,99898
|
|
6
|
+
cybrid_api_bank/rest.py,sha256=WXdny1oRSk6Bvg5M52HSxen1GymfmLEFqwrrBGkxe1c,31684
|
|
7
|
+
cybrid_api_bank/api/__init__.py,sha256=WkDwTKMO-ZJMVw0BysflJ0ecuptmX2Z9pKBHUH8aNRE,224
|
|
8
|
+
cybrid_api_bank/api/accounts_bank_api.py,sha256=qcumoKQvHS6L-WHLtFTp5jgPxB8R73WabWqIvWuVRiU,36769
|
|
9
|
+
cybrid_api_bank/api/assets_bank_api.py,sha256=-MGYsy9_P2uCMxRJWqSwlQ4zR-pECSkDFXVB4b-OrwY,23892
|
|
10
|
+
cybrid_api_bank/api/banks_bank_api.py,sha256=j1vfIE2rUxPqLKOi4fz1mkWZVy3JrSd25faIGUp08vM,40074
|
|
11
|
+
cybrid_api_bank/api/counterparties_bank_api.py,sha256=cEw31Va-Ju10mVTeGgMnpnPkEis5CJtVEWhwUQQEadM,36584
|
|
12
|
+
cybrid_api_bank/api/customers_bank_api.py,sha256=ZjovYejbrHrTs6tHbrSkPQxydpfq-8sedOF7m4_Vrec,41765
|
|
13
|
+
cybrid_api_bank/api/deposit_addresses_bank_api.py,sha256=r8SYgMrWM3EcAOVyC6s4V0duEFchYqZMSTkNR1rjDWo,35891
|
|
14
|
+
cybrid_api_bank/api/deposit_bank_accounts_bank_api.py,sha256=TM3VEUuepFnCzXd_Zc2XVU3GWH_bovrXLKluHlWH88s,37231
|
|
15
|
+
cybrid_api_bank/api/executions_bank_api.py,sha256=U4YlZp8xmDTEelrng3Uxt6UNDNA0oPkcsb9nWFYirWo,28666
|
|
16
|
+
cybrid_api_bank/api/external_bank_accounts_bank_api.py,sha256=_xJAc77ElKTtP7b1rPh3pWysv7Qa_FlneRhk5irMKvM,52189
|
|
17
|
+
cybrid_api_bank/api/external_wallets_bank_api.py,sha256=t7iX-WHoJWUcFMELsK_B-DHg5peCoV06EWbybks7uTg,42852
|
|
18
|
+
cybrid_api_bank/api/files_bank_api.py,sha256=UBq-fLmTGiLQMR-28Xs1pQn1KXtT6JUENAg5xlEsy34,36284
|
|
19
|
+
cybrid_api_bank/api/identity_verifications_bank_api.py,sha256=qBfbB11JXLAkwDN3kgixYIRj7JuI85HgQr9MbhbT6eo,42356
|
|
20
|
+
cybrid_api_bank/api/invoices_bank_api.py,sha256=PejacLwdvi8WQP38Omy_kJo-id7vDeGuyTAqiipbThY,42043
|
|
21
|
+
cybrid_api_bank/api/payment_instructions_bank_api.py,sha256=G5g9zyQYV4KLNi2LytVf1VjqQL5y3fF5syyzm5Dv54M,36220
|
|
22
|
+
cybrid_api_bank/api/persona_sessions_bank_api.py,sha256=-C2kjmQSFYan-F9y1jvFXhRSkNQZSxLSntCM7muCJBs,23700
|
|
23
|
+
cybrid_api_bank/api/plans_bank_api.py,sha256=gRRwvD3I6ZUQkWVSNZeE_nnyoLI4AqgDuLFSC7o_g6o,28658
|
|
24
|
+
cybrid_api_bank/api/prices_bank_api.py,sha256=DnO8hGbEtwVqvn2LDEx53gKRfGwWAtSiRz3RrQWQhHE,25408
|
|
25
|
+
cybrid_api_bank/api/quotes_bank_api.py,sha256=h4H_7EiMPvJYc2CO4Meh2jO4ZRjL08ZJuNEacXPxtxQ,35771
|
|
26
|
+
cybrid_api_bank/api/symbols_bank_api.py,sha256=jNztWm66SEUhsJ8-078boItqL9_9OC4Sr2TxnOZssD8,23014
|
|
27
|
+
cybrid_api_bank/api/trades_bank_api.py,sha256=A3VPj-ujr9sEPxDgCYr8TePHuB8BmJNwCZeThNa-ZOs,38155
|
|
28
|
+
cybrid_api_bank/api/transfers_bank_api.py,sha256=AXXelFcUCHLUpYJfA0TJNFPsw4aiyBZIdUoje-YYkGk,47646
|
|
29
|
+
cybrid_api_bank/api/workflows_bank_api.py,sha256=ts2x_B3DPGDCunTtE6dz4CjyOEtxlGMcY2-56AVt8Fs,35509
|
|
30
|
+
cybrid_api_bank/apis/__init__.py,sha256=fUVmgkS-OysFwIbRxwci1vAaoAgxIlBNdSh40uahj0I,2024
|
|
31
|
+
cybrid_api_bank/model/__init__.py,sha256=XJNyESDXCrSday5DwGDOxfGHqAQTWle-YPeJGxkSx9Q,349
|
|
32
|
+
cybrid_api_bank/model/account.py,sha256=UhCFZj6vWCuSFvP5t9jw7qAlT-BmPk0H78Y-tTcJwEc,32917
|
|
33
|
+
cybrid_api_bank/model/account_association.py,sha256=GVr59p-Y-Z2sfD5gWykocRDewPvzhLg8VlkicTzEiIc,32192
|
|
34
|
+
cybrid_api_bank/model/account_list.py,sha256=uLnoV8YJ5X7H_ghIAw6tEKiN46mHSi2mzeZwYaJPP7U,30156
|
|
35
|
+
cybrid_api_bank/model/account_state.py,sha256=GuEXOJjfPhLT8vRNHg-M_WncZ-kpWhl3_RioEoU9hzw,29338
|
|
36
|
+
cybrid_api_bank/model/account_type.py,sha256=VZReh5ovbmzeFUW-TnX2YpkpCcgO-Yh6FZtI7PNiP68,29725
|
|
37
|
+
cybrid_api_bank/model/activity_limit.py,sha256=sEAWxeazzXXr36c63BU1Qhj6YEVzKw1PoRzR9HH42Q4,30557
|
|
38
|
+
cybrid_api_bank/model/activity_side.py,sha256=5KJO4_8iUOoSuljdOjx4rLBFj788MNtkOxtlRRD8DS4,29432
|
|
39
|
+
cybrid_api_bank/model/activity_type.py,sha256=p8b9KaO_8_bgUqLGnl7waPxu9J1xQEFwBEadQ_EAey8,29654
|
|
40
|
+
cybrid_api_bank/model/asset.py,sha256=AbGJxKgi8XCamdPUYFMBQvCLdN4aYCpjiC81kwyucZg,30374
|
|
41
|
+
cybrid_api_bank/model/asset_list.py,sha256=fM97JGp0HvlTDt3PdE_SfUMbWf83GgMhqEut3DDPd1Y,30130
|
|
42
|
+
cybrid_api_bank/model/asset_types.py,sha256=KvPT-VRSsxpfzFCbp-wIj4XLFSXEnGc-pp0t3ZkL2lc,29308
|
|
43
|
+
cybrid_api_bank/model/bank.py,sha256=41HqatOQdXSRkd29NeUIG_T60NsL8iucOxnZ4aDGOmc,33297
|
|
44
|
+
cybrid_api_bank/model/bank_feature.py,sha256=XypnKbEWZkQjzCizBaFP3zSE5Gq8CEU41tAWdYOUF2g,30463
|
|
45
|
+
cybrid_api_bank/model/bank_list.py,sha256=NpsmDmv6u7czvWSgdUQDMlfzZrEY1S99KJmgtYW7iug,30120
|
|
46
|
+
cybrid_api_bank/model/bank_supported_payout_symbols_inner.py,sha256=kiAwID1DWLhNyH63yiayWEjv-YOzMZ4uyJ9Pg7GX8y0,29934
|
|
47
|
+
cybrid_api_bank/model/bank_type.py,sha256=0H3tcAit3jM7jSzVbK4_QmuTJeQWjAFfQIW_Cd59yHI,29344
|
|
48
|
+
cybrid_api_bank/model/compliance_check.py,sha256=GOW7B83-KSrkwA24_bijPJ_svxvxmyMFEf1ZH3EIYcE,30303
|
|
49
|
+
cybrid_api_bank/model/compliance_check_outcome.py,sha256=JamHbvHCpu4pSXG9lsa5JSm_N463Kg-L4qH9dsXj2as,29464
|
|
50
|
+
cybrid_api_bank/model/compliance_check_type.py,sha256=WTuAjyU27ptHn0uGQT-HfGHgF7Q3t6vhNxA3RV3ZD9I,31441
|
|
51
|
+
cybrid_api_bank/model/compliance_decision.py,sha256=xPnEobARTmbDD4GSwmC669CLZ7LFfwZzETBI19hO4Fo,30310
|
|
52
|
+
cybrid_api_bank/model/compliance_decision_state.py,sha256=zvuisM3TVjTESmT3M6LEVHqWl7SIUH5B-3oe_cv_kPc,29539
|
|
53
|
+
cybrid_api_bank/model/compliance_decision_type.py,sha256=4utI-07p9AdWsS9ctqrn0Rz5MPzouQlE1BPOg0eBg2A,31450
|
|
54
|
+
cybrid_api_bank/model/counterparty.py,sha256=YiwB_IYRWxf9GTKfKtyNBDMkttORuuaKJvvR7l_-Vzc,33920
|
|
55
|
+
cybrid_api_bank/model/counterparty_address.py,sha256=Z7AGPNa1Y4ZdkiYKrrlJw2EhKMq-tS8PG8EGXBtkNEc,30658
|
|
56
|
+
cybrid_api_bank/model/counterparty_aliases_inner.py,sha256=gXzVttUuNXX87YvIkHUDRfU6KeU3FxQFpmAEFXzNCSs,29778
|
|
57
|
+
cybrid_api_bank/model/counterparty_list.py,sha256=NyGsuZJ5ImFvmXbQpktucYObBXKYk-dUimQhMNXSle0,30154
|
|
58
|
+
cybrid_api_bank/model/counterparty_name.py,sha256=O-2HEqsGaUJ_8AiwiJ1jL4j6dO66aDgYvxDDfSnY7f4,29753
|
|
59
|
+
cybrid_api_bank/model/counterparty_state.py,sha256=d9khMGkJ-qeALUlMeYb-uQqBzuVN9pteclkcGSmHE20,29539
|
|
60
|
+
cybrid_api_bank/model/counterparty_type.py,sha256=i_2tgAnq-8kE9Lgh5TrzNuK7HbY7D91ERwe4vtFbhDo,29374
|
|
61
|
+
cybrid_api_bank/model/customer.py,sha256=kgasL7bQZKYq2aKPJpioR59Yz022SqQBSrQiX0lBVdU,35777
|
|
62
|
+
cybrid_api_bank/model/customer_address.py,sha256=UgcjLKMG27nONmqEwa8WvW-kQo7WW5UEf6--1aG7pWQ,30646
|
|
63
|
+
cybrid_api_bank/model/customer_aliases_inner.py,sha256=PQaoPtUCpW7fGC64II7wlEuA1AgCtfgL9iqrcMlbXSY,29734
|
|
64
|
+
cybrid_api_bank/model/customer_list.py,sha256=-g-GxWvVVyY_biLroCaj0HicSvq9BDrTC4cax_4B7aw,30114
|
|
65
|
+
cybrid_api_bank/model/customer_name.py,sha256=NaYHC30_YDXjAkeyPRk5Vn5dkLHBt8T0OKvnoP1vpr0,29709
|
|
66
|
+
cybrid_api_bank/model/customer_state.py,sha256=pCRF0e5Exw66Bno6v-ttcPC4ydNht-8a5Fja8br0WLg,29599
|
|
67
|
+
cybrid_api_bank/model/customer_type.py,sha256=KtIRmlFu6z8UiKm0W-jGsdeW4mGo3f3dK5x6QUXzcek,29362
|
|
68
|
+
cybrid_api_bank/model/deposit_address.py,sha256=QVsDOPGiPTsEbaA5gULjcX0dJFqQJwuweC49xz7Rxrk,32509
|
|
69
|
+
cybrid_api_bank/model/deposit_address_format.py,sha256=bH_71Gu6xDhwooijfRMjXPkFnT_h4RBsyVclHNzIQsw,29362
|
|
70
|
+
cybrid_api_bank/model/deposit_address_list.py,sha256=0Qb56AUyZob_4a2mq2Ku-sxL-k2BIOznjK-bReRupuA,30175
|
|
71
|
+
cybrid_api_bank/model/deposit_address_state.py,sha256=SPt-cbYvt7Pvm-yEnRwmfZsCwdauAmLob0iWqrO4zK8,29359
|
|
72
|
+
cybrid_api_bank/model/deposit_bank_account.py,sha256=hGkcMtDNv54EPTUTEQlXrYFmHpShMWvtEOFFBeJtHhQ,35965
|
|
73
|
+
cybrid_api_bank/model/deposit_bank_account_account_details_inner.py,sha256=5JlmZKRb2BxntezoNH-OiO_n5hB3iszFIOgXn_FGK0c,29074
|
|
74
|
+
cybrid_api_bank/model/deposit_bank_account_counterparty_address.py,sha256=pdqdo0sZsr5GzKbWItFQw_BEVtrlZGJDcCCCGWDpDC0,30831
|
|
75
|
+
cybrid_api_bank/model/deposit_bank_account_list.py,sha256=MDzubJCnkBLBHfhMeUdZ3CaqdCZ-oqevumNcaAA9OFI,30216
|
|
76
|
+
cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py,sha256=OrfPxPlVEfo1z2AwuAVmUoFiwK3uwY-FI0yKO4INLC8,29539
|
|
77
|
+
cybrid_api_bank/model/deposit_bank_account_routing_number_type.py,sha256=mgjr7U0GKHaM9Cc_x_UOEhEuEDhyG6cTJbQRFWW9iRg,29425
|
|
78
|
+
cybrid_api_bank/model/deposit_bank_account_state.py,sha256=qtVrZ_t8L6AMaTXRHil_V32YrQMnDnNASm1dlhrUCHA,29371
|
|
79
|
+
cybrid_api_bank/model/error_response.py,sha256=jPbNgfWy-xjwOfEKoAnKCg59y3KCsU3r2EFVapdxtac,29573
|
|
80
|
+
cybrid_api_bank/model/execution.py,sha256=yAm3IRttwjhe5oqP91a-rVU_VoYq9Y6gMJ8onO-oVbU,34277
|
|
81
|
+
cybrid_api_bank/model/execution_travel_rule_info.py,sha256=WGjl-HSuJ0BhFP54WCOUA-CAIKqHPJuVq4Iu-SiKJ84,30298
|
|
82
|
+
cybrid_api_bank/model/external_bank_account.py,sha256=WDu6FqBH-SzFzni2VU5YTZ_kzAzosymAl6OfW12yaZw,35892
|
|
83
|
+
cybrid_api_bank/model/external_bank_account_balances.py,sha256=7Bv4vrCwaUqZUM7x0R2EUtNpH0uKfWwq7MQrk4u7iKw,29493
|
|
84
|
+
cybrid_api_bank/model/external_bank_account_kind.py,sha256=iJ8fcMAPTIaMSaMNH5ChGMylh6ASf5ymaZYqYIKZ954,29593
|
|
85
|
+
cybrid_api_bank/model/external_bank_account_list.py,sha256=xMpKSKQs7imkvBHgZ1vXeBy9Q9TatH8GjSopVkzdBsc,30306
|
|
86
|
+
cybrid_api_bank/model/external_bank_account_pii_inner.py,sha256=NKBEv9sZhNNlOT_esF9IT6kFLVs6JRVbBtCDFLamOZk,31852
|
|
87
|
+
cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py,sha256=AUWv_aGXN5TxpRNCXQ6uf_Zf6XKvGFtV7Pz9AoAnsEw,30725
|
|
88
|
+
cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py,sha256=fLYoijH5-Sm5_FDI6JcqI2VNtUcPRMjQu2fmns3sQLs,29550
|
|
89
|
+
cybrid_api_bank/model/external_bank_account_state.py,sha256=UqlpZNT4eatmXFwYYgnZ_Xl_25x_LcN2pORINnREd40,29848
|
|
90
|
+
cybrid_api_bank/model/external_wallet.py,sha256=BlkUgClPJsZETJmQeRvhkz7y-yuCyK5I98bd8ZJOSbQ,33331
|
|
91
|
+
cybrid_api_bank/model/external_wallet_environment.py,sha256=FqdG13Jww64KFq9P-vacOJ_fvjq_-1zl0yVAVYRuRAo,29395
|
|
92
|
+
cybrid_api_bank/model/external_wallet_list.py,sha256=YYb1IY4dm8M1UwuA8ulPoqD7RNDFphuoIlZYfu9DS2k,30243
|
|
93
|
+
cybrid_api_bank/model/external_wallet_state.py,sha256=gQTLiS_Jsj3jBtlSyK71RD5M6oIroFaXzO7g6WLP5N0,29683
|
|
94
|
+
cybrid_api_bank/model/fee_association.py,sha256=Cm_5JjITIocrMVozXEkPH9_sHbwyeYeDL96bySHlVug,29997
|
|
95
|
+
cybrid_api_bank/model/identification_number.py,sha256=BzOfiyTQm3If3ND4erqqtmf3YLCDHi3Rq0c99NJVRVY,30385
|
|
96
|
+
cybrid_api_bank/model/identity_verification.py,sha256=wAR_KuicYVsHquOZxplP26FZEg7TB9hB0elG48cIwLM,34272
|
|
97
|
+
cybrid_api_bank/model/identity_verification_business_associate.py,sha256=KNfy2v6QFg8PAUBd3LpA1qW2GFdJ1X5mg0_Uk_FPwUc,31528
|
|
98
|
+
cybrid_api_bank/model/identity_verification_document.py,sha256=4JDgC1QABSFFy_c_FQeDHfLXLU43WBEuT7HpN34SIOQ,30910
|
|
99
|
+
cybrid_api_bank/model/identity_verification_document_file.py,sha256=5iG9vKijzmDy-zYkWCmU0M88HFu4avCJYOfp6tigPYE,30345
|
|
100
|
+
cybrid_api_bank/model/identity_verification_list.py,sha256=AfIWKd_EZ2XHQaiKI0PTa_NHoLicuItUZiRp6XdbOnY,30235
|
|
101
|
+
cybrid_api_bank/model/identity_verification_method.py,sha256=UqYGcHeacjRqf4mfSGIu0g8scXzVBu_Kgaho7LHzDOo,30802
|
|
102
|
+
cybrid_api_bank/model/identity_verification_options.py,sha256=Qz5Vzv85pi4KjahnvHR6hIRkpBL1-EhMEYoaHKrRr58,29063
|
|
103
|
+
cybrid_api_bank/model/identity_verification_outcome.py,sha256=OW0E8Xlp7DNgtCQqACR4Pcr8qW09Xh0NIjgpK9wJ6n4,29371
|
|
104
|
+
cybrid_api_bank/model/identity_verification_persona_state.py,sha256=w4hdlpcJ6HZr-Ui09L3CKUFhjQ8-ZxW04YlyUgOr8Eg,29830
|
|
105
|
+
cybrid_api_bank/model/identity_verification_state.py,sha256=fq9HEi0GqyL7uZNlLu0vmOQUsdPY6rpvyP_9qFJ5cNQ,29713
|
|
106
|
+
cybrid_api_bank/model/identity_verification_type.py,sha256=FAAlterrcQUgxbvrVKtc4oHxMVKsEn0ff1VAbBSJN3w,29488
|
|
107
|
+
cybrid_api_bank/model/identity_verification_with_details.py,sha256=pJV6YeflSDoRuHoqTNH0B27BraGlWKiH30bTeUQ74RY,38068
|
|
108
|
+
cybrid_api_bank/model/identity_verification_with_details_pii.py,sha256=DJ4S4zKh7YRY_VCZ5pCjjlQSQ-JEIXlUKR1KfWk6HRQ,32900
|
|
109
|
+
cybrid_api_bank/model/identity_verification_with_details_pii_address.py,sha256=wLgIE1EE8wrx-1_X9spVrWQRF9sIVSduxIbdU5GKzZM,30942
|
|
110
|
+
cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py,sha256=07_2jUWIogeIcgxEWBf2QBFK2IEUlpb94bWeT2AilY0,28974
|
|
111
|
+
cybrid_api_bank/model/identity_verification_with_details_pii_name.py,sha256=HXTIWe2MIo2ZsFqDlKceNbC5TOwIqlVORpdr_RnRdVo,29771
|
|
112
|
+
cybrid_api_bank/model/invoice.py,sha256=aD7alJn-TNE1j90y_RtnY64rPYQF4_RNB_1hRM67CHI,33342
|
|
113
|
+
cybrid_api_bank/model/invoice_list.py,sha256=dyKhVW3bcEsVJ70grqP2IRwZFYfmo7bwLLuwGVMTyFc,30104
|
|
114
|
+
cybrid_api_bank/model/list_request_page.py,sha256=7yL8n0scTMMvuZxL8en-c1p_wP6tZOQv9BzMIioIsqo,29267
|
|
115
|
+
cybrid_api_bank/model/list_request_per_page.py,sha256=atAtq1eWdzBoXhvumvNtenUIn090iABFRMvKhpgEb-Y,29374
|
|
116
|
+
cybrid_api_bank/model/patch_bank.py,sha256=lkaK-f6Rin-lz6rs-2av0ym_MsvWpvcVdZI52kdrGMA,30806
|
|
117
|
+
cybrid_api_bank/model/patch_customer.py,sha256=iihgMBEONmnWKP6CrDwiOfkGFtfUR_JRv0dDX7l-_oo,29123
|
|
118
|
+
cybrid_api_bank/model/patch_external_bank_account.py,sha256=7YGE9GKE3_cCFh4DWX7om-Gw9aI189v--2ICrjtMEug,29505
|
|
119
|
+
cybrid_api_bank/model/patch_transfer.py,sha256=FOmfmTTImlBQdOtoFdTaGrbQZsFjKDcB2rbiqvzUjjM,29987
|
|
120
|
+
cybrid_api_bank/model/patch_transfer_participant.py,sha256=RkKJlVZEeZeUj6BwVeqOgiyEYXUS-eEXVG-leQWddbQ,29707
|
|
121
|
+
cybrid_api_bank/model/payment_instruction.py,sha256=KqhjbgmowYQJ_e1K5BahfwOcoLG2R4hU0n2M7LK0Fgc,33182
|
|
122
|
+
cybrid_api_bank/model/payment_instruction_list.py,sha256=c3JcIUQEz2Ifj8FxJ3yaecuUuffYvAhXbQ2GL0yUdmo,30215
|
|
123
|
+
cybrid_api_bank/model/persona_session.py,sha256=KdzExo5vD3aB0H5S43UpuT5v0eEVAx3rDg0Y8Kf8dt0,30108
|
|
124
|
+
cybrid_api_bank/model/plan.py,sha256=mPccoNvZj8afoFu9-Vsp7V08PbU67lPREJnLPWVBiLM,34128
|
|
125
|
+
cybrid_api_bank/model/plan_travel_rule_info.py,sha256=HSJszSfoYof0P5n9sHEKUA2xlnBSTj-v_91-nCd3KLU,30283
|
|
126
|
+
cybrid_api_bank/model/platform_file.py,sha256=sy421Qq6lKY0Jl9IenDUc3ht3YHgS3loRqeXa3Tyyvs,34547
|
|
127
|
+
cybrid_api_bank/model/platform_file_list.py,sha256=BqOKghQ6Nq0mExjNgTY-OSqMyzTJ07jmTWPm-MFdXr8,30201
|
|
128
|
+
cybrid_api_bank/model/post_account.py,sha256=yB5lDu99dNpd5wyn60UpHhQuSRxaYMtpKVnLjqaS7P4,30561
|
|
129
|
+
cybrid_api_bank/model/post_bank.py,sha256=71YRsRNYiO5sXDVrSLFwjM0LlFI_IUYi6_5cX8USH4A,33448
|
|
130
|
+
cybrid_api_bank/model/post_bank_account_details.py,sha256=i8L_1TNSe4yLoAVQ2-dH0y3AoFPmGoj7WpuLEHR3pCM,31358
|
|
131
|
+
cybrid_api_bank/model/post_counterparty.py,sha256=mN_-S2LIsvc2KjVRgEjLQFnczmi674tma2BayrGN8AE,31804
|
|
132
|
+
cybrid_api_bank/model/post_counterparty_address.py,sha256=v1nThpgx2U3DvaKz2Oa2nae8tM87V6EZzPKictHMDE8,31113
|
|
133
|
+
cybrid_api_bank/model/post_counterparty_aliases_inner.py,sha256=ynGmTkHj6o_X496IooUpAsAYkZHLlVpCjuVSzuxe2yY,29014
|
|
134
|
+
cybrid_api_bank/model/post_counterparty_name.py,sha256=Kogm750ZpKkgi5PC4CmnIMQJnpgL1lRnL4qqi2UCyAA,30033
|
|
135
|
+
cybrid_api_bank/model/post_customer.py,sha256=iZJkaixoeaMboL81y1PUFQZrvk6dJE0fnbxymm6LujY,32906
|
|
136
|
+
cybrid_api_bank/model/post_customer_address.py,sha256=jKQ3FOV8Ih-9eIpSq-l0klLzKT4mp18FB3d8PKnXMCo,31100
|
|
137
|
+
cybrid_api_bank/model/post_customer_aliases_inner.py,sha256=cixE7A_7_H1l8n38YilQS38HCNmRfA0ZzWZdy6boof0,28994
|
|
138
|
+
cybrid_api_bank/model/post_customer_name.py,sha256=LtS-HrmidWyzeE_Qc-_rCGybohxBoqALkjPGkmDrryE,29989
|
|
139
|
+
cybrid_api_bank/model/post_deposit_address.py,sha256=Kip_1M_V-FHPYdBrklrSbGbZdE7zDoCx_ROMpidJOHY,29478
|
|
140
|
+
cybrid_api_bank/model/post_deposit_bank_account.py,sha256=-brKuQWZ5QKP9U6ZMxBH9Sg_L74XCGUveCXn3AyIULQ,31878
|
|
141
|
+
cybrid_api_bank/model/post_execution.py,sha256=boj8_F2Q-mcoUfGLG4RV_k4eF0tQUYIiczeMiCK5Q4k,29076
|
|
142
|
+
cybrid_api_bank/model/post_external_bank_account.py,sha256=HwXQE4_vYdUn9wFbYDlHjwHgSpQ_QqWfqgSHpQ1IBNg,37030
|
|
143
|
+
cybrid_api_bank/model/post_external_bank_account_counterparty_address.py,sha256=Eef7g8uUn6JraVtw67aFK_lR5KJqwweyHqLaVGcJU4s,32204
|
|
144
|
+
cybrid_api_bank/model/post_external_bank_account_counterparty_name.py,sha256=dnbwUHNKWjiu0dxdQ4Cmxgj4gEFESGa4Q6L_HO33w0I,30700
|
|
145
|
+
cybrid_api_bank/model/post_external_wallet.py,sha256=AW-eD8bkHet7tEzrnfyCrmKjvf8xaSZQEpOYPLfQnp8,30976
|
|
146
|
+
cybrid_api_bank/model/post_fee.py,sha256=XrHBx5L4N0oZtptcoAD_XOjf6UTtoXNNokJ3gJEJBnY,29863
|
|
147
|
+
cybrid_api_bank/model/post_file.py,sha256=wb7sPRaXcM7W-9vsqWlQTt9CnFn1kuohZumUADfTZYU,31664
|
|
148
|
+
cybrid_api_bank/model/post_identification_number.py,sha256=IZfHOWTS1rmgKA3gHHohH9MjMLrbCjoZcZkK6XuUlM4,30552
|
|
149
|
+
cybrid_api_bank/model/post_identity_verification.py,sha256=pLGwEhoH8CXZ_fFLoB3mh2mS7ylOyHptya_Xuj41X3M,42525
|
|
150
|
+
cybrid_api_bank/model/post_identity_verification_address.py,sha256=sGo77v6TDlKM9gY3KDaUCFD26bR_L-TQZmKT7_zXXwY,33707
|
|
151
|
+
cybrid_api_bank/model/post_identity_verification_aliases_inner.py,sha256=w5fu_D9wSIjwCC5VTG7BjbBU8fXtGJJnRfbbKskioIs,29110
|
|
152
|
+
cybrid_api_bank/model/post_identity_verification_name.py,sha256=Gve_yC4PnV7OGkKVzPF0xsAT4ZoGMTM7QBs70vdRSxE,31219
|
|
153
|
+
cybrid_api_bank/model/post_invoice.py,sha256=OU5AWoYaPFPGd6kUshBfBEFmXF8VxLCPdzfr14KKV9Y,31754
|
|
154
|
+
cybrid_api_bank/model/post_payment_instruction.py,sha256=YzmGQzHUlH2sWNAbIscfLGzTu-6t4uFVJqzOa6aAgA4,29744
|
|
155
|
+
cybrid_api_bank/model/post_persona_session.py,sha256=j-l_hw2MGTUtamyVs-WmqRzXDHOXsY2GdfQGLLEkvhE,29653
|
|
156
|
+
cybrid_api_bank/model/post_plan.py,sha256=c2BD5NQbOso-FzCJNKIyOpJ7ykl-Nt0Sx3-kQUUHVss,31665
|
|
157
|
+
cybrid_api_bank/model/post_plan_destination_account.py,sha256=USZJ5Bmm8C1MiX0PjXHdjcB7JnLF0H-Y6lxPzlL5-74,29426
|
|
158
|
+
cybrid_api_bank/model/post_plan_source_account.py,sha256=qty3QAkZItsdN4efHQPpI_7gnTkk4fpNgt3tLliqoy8,29401
|
|
159
|
+
cybrid_api_bank/model/post_plan_travel_rule_info.py,sha256=97i1JHVgB7oGrHD3cNMvVGNlKwvLFT_CN9R2tsshMHY,29808
|
|
160
|
+
cybrid_api_bank/model/post_quote.py,sha256=OfD6sMECICA0hwYx9Z8ylQX2iw1VhtPnSYIIwMeNdpE,38018
|
|
161
|
+
cybrid_api_bank/model/post_quote_entry.py,sha256=sE2GWFlwzoeiwr6o4tF6jedaIzVh2ZPnjkOMuXyxDWM,30547
|
|
162
|
+
cybrid_api_bank/model/post_supported_payout_symbols.py,sha256=QP4CmYNkIajQ2lxWE0TQ7dzzIEIbopBFbuRr6cZNpQI,30973
|
|
163
|
+
cybrid_api_bank/model/post_trade.py,sha256=G-dRKOM_5tTDLYgoMUzaf-vi_WkvFdp21PTslNl25Wc,31144
|
|
164
|
+
cybrid_api_bank/model/post_transfer.py,sha256=vE3-D25-4ogqsNAeEOAuYdAZDdxLAmjLuVwE5I5U2eM,41082
|
|
165
|
+
cybrid_api_bank/model/post_transfer_participant.py,sha256=dCHLqAKGWmqO9ryYJChhtpgT3CzynMAhQBRPErr-ZPM,29704
|
|
166
|
+
cybrid_api_bank/model/post_ultimate_beneficial_owner.py,sha256=76PUemWpuYKkGNqxgWa6lSvj5z9BKOp9nx5b7kTJUlw,29568
|
|
167
|
+
cybrid_api_bank/model/post_workflow.py,sha256=0F4A-oWnqVZO_-ymWlHfj59iyALAPdoD1j0byTmvPUo,33013
|
|
168
|
+
cybrid_api_bank/model/quote.py,sha256=IYNr84g02vZCHv3UtSX_WI7kwGmDEdh5cRP7CCgBURY,37004
|
|
169
|
+
cybrid_api_bank/model/quote_entry.py,sha256=IS5kazmplTg4MLtpxTAt9uznaw96-tZ9oQIq3zwBZKc,30582
|
|
170
|
+
cybrid_api_bank/model/quote_entry_destination_account.py,sha256=XyFGWbeQBREv1mhMoPaMWHJygqHeKEpg1hc1uS5B_dg,30367
|
|
171
|
+
cybrid_api_bank/model/quote_entry_source_account.py,sha256=Z523nHHtVS6E_GGA93MaCJQE3s47TqbvxVrNwDBvUAY,30137
|
|
172
|
+
cybrid_api_bank/model/quote_list.py,sha256=1_KaDlp7VkH3bk5QSjxYc8AE2Dd6YNOhGuidr1Nr6W8,30084
|
|
173
|
+
cybrid_api_bank/model/quote_side.py,sha256=KPbQv3g3kKktZB2B0VJRCrTgFlwkT7pc4TN60-eIzto,29461
|
|
174
|
+
cybrid_api_bank/model/quote_type.py,sha256=xPMC0fqQZWT9wamRIK1jgFsW5UPgO6nNIesEIQO-F2M,29821
|
|
175
|
+
cybrid_api_bank/model/stage.py,sha256=hfpeiw2kaWdGX9S-9CiAcHsxjrhbVCO6LtOdlSoNNeQ,32064
|
|
176
|
+
cybrid_api_bank/model/symbol_price.py,sha256=B-Z_3uTvhINKIkjJUjeQUTJC9GVcTMJM2NGxG11bIbM,32349
|
|
177
|
+
cybrid_api_bank/model/symbol_price_response.py,sha256=TO-RAdcUyWFZT4JDfqgZYchtMeCu4LuOJTqTlUKkfeA,29416
|
|
178
|
+
cybrid_api_bank/model/symbols.py,sha256=eblTNzTjMu7zhOas8b6qOoEcXLiSBmI5oEfe9dUmzaQ,29244
|
|
179
|
+
cybrid_api_bank/model/trade.py,sha256=Vx0qcQcMjyScVAGxa2kiIp1qwMNnTXtuEzgqNp_XxxU,34325
|
|
180
|
+
cybrid_api_bank/model/trade_failure_code.py,sha256=cMtYqak1sX1xVWgB1tWV7ko5-4kvWPyZ1rrWcfeNgUs,29920
|
|
181
|
+
cybrid_api_bank/model/trade_list.py,sha256=w3_I81bhjiHM8EqKmdc_qTLSb9nhXZri49-uZDcI5iw,30132
|
|
182
|
+
cybrid_api_bank/model/trade_side.py,sha256=Pb4iX2aFI758HUcotxUiR1AlMqJOCZOqCa3_dhR7G2M,29287
|
|
183
|
+
cybrid_api_bank/model/trade_state.py,sha256=IyC7ZODqCHJuI4sdb2aOwLPSlG7D9HFzNDW5pMgqK9M,29752
|
|
184
|
+
cybrid_api_bank/model/trade_type.py,sha256=6topfq3Sb74hpRhHDUFFmPBEH0ZXCt2cmmSgxRTsE6I,29419
|
|
185
|
+
cybrid_api_bank/model/transfer.py,sha256=q8h3Ck6RnJU6IGGy-4MFNMm8LlcoioOWCscXDWTfgVA,43870
|
|
186
|
+
cybrid_api_bank/model/transfer_account_type.py,sha256=4Vi2XoeXu1naTR5m6NclrgfPABQclvXUsplRCZ3AduQ,30169
|
|
187
|
+
cybrid_api_bank/model/transfer_destination_account.py,sha256=rkdnJ2yFYuFHqCHTuKeKGNWzA3N55wouT8feyPhYQAc,30360
|
|
188
|
+
cybrid_api_bank/model/transfer_entry.py,sha256=S3_g2PdpxFNn-ic6QsTnl89pdZS_u7RNAOnOUCagJis,30473
|
|
189
|
+
cybrid_api_bank/model/transfer_entry_destination_account.py,sha256=c1S9-XEmC-L1i0Vtuhi-2M3sYauduRiAflj7u-rn0Ss,30375
|
|
190
|
+
cybrid_api_bank/model/transfer_failure_code.py,sha256=Us5pZEBJiYAuTDlchPN_zUq0fem0mnTVgMZf-t3ctMo,31249
|
|
191
|
+
cybrid_api_bank/model/transfer_hold_details.py,sha256=eFhFPg_Dbpv-C4E8H05VkPmpGGbv9CfWExpiASFCeQY,29873
|
|
192
|
+
cybrid_api_bank/model/transfer_list.py,sha256=ZUxgzXXteaYudqNCuryvuUv_wX1lJQKQzYn1es8Dk74,30162
|
|
193
|
+
cybrid_api_bank/model/transfer_participant.py,sha256=85-2Xzh0GEMndr45sijsi1GrsxK0n-QXSxambRPN4JU,29640
|
|
194
|
+
cybrid_api_bank/model/transfer_side.py,sha256=_SYHz4ZqXusXzigVdOfILVtqYNSDJYQ_YeeaACEKy8c,29356
|
|
195
|
+
cybrid_api_bank/model/transfer_source_account.py,sha256=aXDoy4776d1SHHA4KawJMunYsRpgWFRo0OKhz3PB6MQ,30345
|
|
196
|
+
cybrid_api_bank/model/transfer_state.py,sha256=8zP0QwQRVJdbqGWqZEp5im8s3vcIuCiIMGfEz-rKYvU,29671
|
|
197
|
+
cybrid_api_bank/model/transfer_type.py,sha256=6oGqm8G7OOzhM-4i3M0p08cIYINTZMW3UWbMl9LSMEg,30238
|
|
198
|
+
cybrid_api_bank/model/travel_rule_info_party.py,sha256=b3RVdgRisKErudUn5DXzCug4axOXQO6VWefLlaJ28Tw,29502
|
|
199
|
+
cybrid_api_bank/model/workflow.py,sha256=m3yd9n8Awz9IwjnZAi5aEHHxHT88mNKH49ykwv6TWE8,31365
|
|
200
|
+
cybrid_api_bank/model/workflow_state.py,sha256=azc_wPNpZK4iE-1JAzrt0DDwJpdT7HOtH7yWUqlcyt0,29425
|
|
201
|
+
cybrid_api_bank/model/workflow_type.py,sha256=1gOnFHORXtomgvDn9v-fNKGp67ZnAB0v2SscG0Ph57g,28958
|
|
202
|
+
cybrid_api_bank/model/workflow_with_details.py,sha256=wtLzmxtHD6bVv-I6WZ9vowGA8ghNrbWivm5RkeWHXwI,34111
|
|
203
|
+
cybrid_api_bank/model/workflow_with_details_all_of.py,sha256=U1Z1fKMelR4m67S_Ur_2Rv7gqgdlJi5q2ucCbJHSA8c,29034
|
|
204
|
+
cybrid_api_bank/model/workflows_list.py,sha256=0i4r_iM0wc61gR-2C7M0kfsbYN5A3lBYDZTt01GqrYw,30171
|
|
205
|
+
cybrid_api_bank/models/__init__.py,sha256=S1_i9pL9MgmnL1mi7z_YcDFDmCy9X9LZUhh6nJzM8Co,13382
|
|
206
|
+
cybrid_api_bank_python-0.125.59.dist-info/METADATA,sha256=4uPI6ddbzNz4CPnrYQabOvOdq6O2N7Bm__UzmRiyflU,689
|
|
207
|
+
cybrid_api_bank_python-0.125.59.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
208
|
+
cybrid_api_bank_python-0.125.59.dist-info/top_level.txt,sha256=4OBbfMqeuLQrqskZXyon88Z3vMFpHx9bgQciwkeZJC4,16
|
|
209
|
+
cybrid_api_bank_python-0.125.59.dist-info/RECORD,,
|
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
cybrid_api_bank/__init__.py,sha256=U0ehseYwUp71GP-ZrVXxA36b5xLGm9OYKt-k4v49Reo,18155
|
|
2
|
-
cybrid_api_bank/api_client.py,sha256=F_gq92oDlUFQocL7zMjl_lAPSl8NR7ve31CGuStYLAo,56487
|
|
3
|
-
cybrid_api_bank/configuration.py,sha256=b_kLiri9LTRhBY3A7jFeFqDIDM504BdYRBb55BgOuG8,34390
|
|
4
|
-
cybrid_api_bank/exceptions.py,sha256=2dF0OeLp-GYyTXlgtyTPUISVmM_pBSZSil9pq5aYMHc,22479
|
|
5
|
-
cybrid_api_bank/model_utils.py,sha256=31iQL49MZ89wvWESmILSro5q_D3jzFoQ9Xv4R7WyONs,99898
|
|
6
|
-
cybrid_api_bank/rest.py,sha256=dG80-FaYRr98esRMbsC47pmsu-LmeXodL26r8HgVABw,31684
|
|
7
|
-
cybrid_api_bank/api/__init__.py,sha256=WkDwTKMO-ZJMVw0BysflJ0ecuptmX2Z9pKBHUH8aNRE,224
|
|
8
|
-
cybrid_api_bank/api/accounts_bank_api.py,sha256=CXKiC2vnSPNA-1e88cAuib-dc58GUWAJOmFjoorujTA,36769
|
|
9
|
-
cybrid_api_bank/api/assets_bank_api.py,sha256=CbuYt3UBYiZyWeKw3I0qHBH_CBk6RrVjH82iCabV5eY,23892
|
|
10
|
-
cybrid_api_bank/api/banks_bank_api.py,sha256=iSfGbmnFsxjsF-Cz8wIG_FNUSA7a82Wkkb1O9udLbLA,40074
|
|
11
|
-
cybrid_api_bank/api/counterparties_bank_api.py,sha256=aclqoiMczoNpWKpQJ_Wa_AlzbqqEs794llSD873dZB0,36584
|
|
12
|
-
cybrid_api_bank/api/customers_bank_api.py,sha256=4hawB7FoAwR7iaRLlNdsqfSdVzTgRwrGhPMceiBpnQg,41765
|
|
13
|
-
cybrid_api_bank/api/deposit_addresses_bank_api.py,sha256=7xQXXOX56bfQ993MgERh_m-xrv9wWkZBJYICukHJfcc,35891
|
|
14
|
-
cybrid_api_bank/api/deposit_bank_accounts_bank_api.py,sha256=UDqcbyn5-_VHNPF8tPq3pUITXeNPtAtvhC0j9fezUvI,37231
|
|
15
|
-
cybrid_api_bank/api/external_bank_accounts_bank_api.py,sha256=GHigVqhamHBDjTa1pbMbITYEQZW47LoWHfUkUnFB5mQ,52189
|
|
16
|
-
cybrid_api_bank/api/external_wallets_bank_api.py,sha256=NIgyE_OmQ2d3zT6WbmfsmJ5e8b4U5KFxr972pLN4aKw,42852
|
|
17
|
-
cybrid_api_bank/api/files_bank_api.py,sha256=V7phiv6YpVbB47IxMHfjzxJ5oYIedjYM62DSyeZtcSU,36284
|
|
18
|
-
cybrid_api_bank/api/identity_verifications_bank_api.py,sha256=-oNQBslGSMrCgYTrJFJMPlNRMO73nAISWGmeS_gYsfg,42356
|
|
19
|
-
cybrid_api_bank/api/invoices_bank_api.py,sha256=-NvXHCjEwSlsSMkWZgZAH4qdmCRbPlecg7Z2A0nhAGw,42043
|
|
20
|
-
cybrid_api_bank/api/payment_instructions_bank_api.py,sha256=ZZP1aAwq_0Hp7c5XnbYplo3DNhib0n6nR2gaWIMk1hc,36220
|
|
21
|
-
cybrid_api_bank/api/persona_sessions_bank_api.py,sha256=bQ1chPA3RMy1mbWlhvdloFVI9qyr6hUFCDhaJgDrwxs,23700
|
|
22
|
-
cybrid_api_bank/api/prices_bank_api.py,sha256=vul_fpGH9HcV7wY6hkYpo9dVwDjVZ0asByfZ_mPb4T0,25408
|
|
23
|
-
cybrid_api_bank/api/quotes_bank_api.py,sha256=xLYmc34KOo6G2-YnSe19mJ0nUjUx4d2FG3Yvg0haEiI,35771
|
|
24
|
-
cybrid_api_bank/api/symbols_bank_api.py,sha256=QbMYPXoWIjBakITMoUZ7riSrtHDdaTxOU4p7bk2wQwM,23014
|
|
25
|
-
cybrid_api_bank/api/trades_bank_api.py,sha256=TRqvfTy9d81-a_ZNfu7O3jGhXPrqzV1QtRYjfD5Rwfg,38026
|
|
26
|
-
cybrid_api_bank/api/transfers_bank_api.py,sha256=84s7HJGyZ6et9Bvr68nJdWB_xD6tiMmR0WoQUDK8bQQ,47646
|
|
27
|
-
cybrid_api_bank/api/workflows_bank_api.py,sha256=aFi5RL9_SpF4KCdI1UhxIyL0z0lTujsfhVFGzq5Z4dQ,35509
|
|
28
|
-
cybrid_api_bank/apis/__init__.py,sha256=LHM0NotIKPw0QcIIXF3x4O27DzHZjFR8wjvACUWQfGg,1894
|
|
29
|
-
cybrid_api_bank/model/__init__.py,sha256=XJNyESDXCrSday5DwGDOxfGHqAQTWle-YPeJGxkSx9Q,349
|
|
30
|
-
cybrid_api_bank/model/account.py,sha256=7GUB6j5KWmcz1HYYaIZNJUBfvCQl-mZ-jHiWwBYman0,32917
|
|
31
|
-
cybrid_api_bank/model/account_list.py,sha256=42MkmyNWrRTAPdD-pfmkmQWX76ISUvZMhvVL7hXQAVI,30156
|
|
32
|
-
cybrid_api_bank/model/account_state.py,sha256=UfUxWxJNJY-VET_AVCjC_dT6br9AOLuqBT7CUwFp398,29338
|
|
33
|
-
cybrid_api_bank/model/account_type.py,sha256=nidouvkf8dpRj5Z6pBP04aTZgHEn_8k9clKiN5igq9c,29725
|
|
34
|
-
cybrid_api_bank/model/activity_limit.py,sha256=sgjkNAeLzY45tng63zfviv6h3QrTNGxSb0S_tL3IONg,30557
|
|
35
|
-
cybrid_api_bank/model/activity_side.py,sha256=2rI26Iv6zitMjxzNHVobHQGkrQt2oKpcrPVq-dUET5U,29432
|
|
36
|
-
cybrid_api_bank/model/activity_type.py,sha256=IlwdA3iQKBo0WcL8sOZdcCpm3a2VdIotVOxea_kkVYE,29654
|
|
37
|
-
cybrid_api_bank/model/asset.py,sha256=7MVIkOI2yK65nyqTRA8JnT979GkQcQ-fD10MQs_lK4M,30374
|
|
38
|
-
cybrid_api_bank/model/asset_list.py,sha256=L_gqPZloLu4VnFTFEkrtAIcr-0QOHpYS6OkSg2ojeGA,30130
|
|
39
|
-
cybrid_api_bank/model/asset_types.py,sha256=Kd0tSGh0i0BReWu-Ie3dvc2RN1kRYrmoCA0B9-hvCZg,29308
|
|
40
|
-
cybrid_api_bank/model/bank.py,sha256=okEzLJLXs34O8xLNOELvnww0NMG62FHRYqzxlQC9AYQ,33297
|
|
41
|
-
cybrid_api_bank/model/bank_feature.py,sha256=MGTtpGoK26nMffXQ403Ds3ZWYWgzIh5FpKGelpUDN-I,30463
|
|
42
|
-
cybrid_api_bank/model/bank_list.py,sha256=WwLpMGbmXfuMaHtlNnuzSvoFssft6dWGn7KVqN29oLk,30120
|
|
43
|
-
cybrid_api_bank/model/bank_supported_payout_symbols_inner.py,sha256=2llig2EeC2pxL1l0w4VIt-jlI23zoGZY209QSsvGo3E,29934
|
|
44
|
-
cybrid_api_bank/model/bank_type.py,sha256=yYmwjYA4ISgt5kh6JyVo_9n6okTvTxk7Q6h-zwJHyCE,29344
|
|
45
|
-
cybrid_api_bank/model/compliance_check.py,sha256=zmrtAnYqk-ugqpyrdC1wciWpegTmmqL43ipj1UWqRfg,30303
|
|
46
|
-
cybrid_api_bank/model/compliance_check_outcome.py,sha256=jpQFEmSKyOsAa_xYdzWxXh9v3ZssB4i8OpZ8vLCzKG0,29464
|
|
47
|
-
cybrid_api_bank/model/compliance_check_type.py,sha256=2Vr01KlvfrP2Fp1QdS3K3nFg1-tWnchTM6Oj1GKsHd8,31441
|
|
48
|
-
cybrid_api_bank/model/compliance_decision.py,sha256=N6vYV_ErthL0QUOg48vXkwZgKOJkZgei-AfFewJ0CZ8,30310
|
|
49
|
-
cybrid_api_bank/model/compliance_decision_state.py,sha256=nJU7SZFbbVA27x-1doxxpjwtDw_kQWAu6PIVpcyC8_4,29539
|
|
50
|
-
cybrid_api_bank/model/compliance_decision_type.py,sha256=sKaqgLS6gitF8x8VMwipS7fb2lhuIcvfGw0GuLMFX-k,31450
|
|
51
|
-
cybrid_api_bank/model/counterparty.py,sha256=lsV-Wx0gRh1wqNd-CPogYetDK05YGFuEXF3M6xYgh7o,33920
|
|
52
|
-
cybrid_api_bank/model/counterparty_address.py,sha256=bqKA5tV9U2ec7hiM8_yCmYDadex9puDHoMPDUQUbaIE,30658
|
|
53
|
-
cybrid_api_bank/model/counterparty_aliases_inner.py,sha256=WdbEDfwZaZfSa-2PPUugiNMZU7tB8IlvmqTlg5g_4Rk,29778
|
|
54
|
-
cybrid_api_bank/model/counterparty_list.py,sha256=N9R-RGPxQunOlL2C9yYqy5chrGhXq3-wbAdbV0VPrMc,30154
|
|
55
|
-
cybrid_api_bank/model/counterparty_name.py,sha256=Hd8pzXz1P8PHOHTAgKiYepV5QfMAyzm_Hc5iTM0H8gc,29753
|
|
56
|
-
cybrid_api_bank/model/counterparty_state.py,sha256=X6N6m1KXS8AhK2IZydJWcS1gePDbjE5uoIrs8kEc39A,29539
|
|
57
|
-
cybrid_api_bank/model/counterparty_type.py,sha256=j6cUOLo5yAwnB60SNupoHCSBoH2zQkkwDG94cOYIAGQ,29374
|
|
58
|
-
cybrid_api_bank/model/customer.py,sha256=28h4MvqPhkUiRjD2QPeWO8q8Mk7Tk-rTY7hpMfSC118,35777
|
|
59
|
-
cybrid_api_bank/model/customer_address.py,sha256=6m4zjWs_sZ7zP1M0f6sd4zrr1NZjYtdB_3xXf_Cgcpk,30646
|
|
60
|
-
cybrid_api_bank/model/customer_aliases_inner.py,sha256=dnYwgFTibfxBWCyshvP0d22QMnEASAY6KcYvG7Ny0Rk,29734
|
|
61
|
-
cybrid_api_bank/model/customer_list.py,sha256=8gwh4XbMEMEHcK1hA3MtiZ1GtuCeasW6lmzuHdcA7lw,30114
|
|
62
|
-
cybrid_api_bank/model/customer_name.py,sha256=xz_xevHFVJGdEJU52qHP0S2Jk3i_ZrDdlU-y6Kwtk_I,29709
|
|
63
|
-
cybrid_api_bank/model/customer_state.py,sha256=FihkfMrnBm_l46zU3JmX5wYwkTqoHSyGQaHqRCmGY60,29599
|
|
64
|
-
cybrid_api_bank/model/customer_type.py,sha256=wFrgBpFvHYI5HI9C0nZcgLw_Iu2udAitipNprAQGz5k,29362
|
|
65
|
-
cybrid_api_bank/model/deposit_address.py,sha256=pR6dIvj6ihQex-hfOtrBhyKAj2Mh1FgfPD8TuMtnFWo,32509
|
|
66
|
-
cybrid_api_bank/model/deposit_address_format.py,sha256=7IkdA4MAPHAMoXWveBcLUbYCJnfKOnoqs-N4Vx6mMXs,29362
|
|
67
|
-
cybrid_api_bank/model/deposit_address_list.py,sha256=d7KExoGAyA6sIywi1lrjPTXe1HZ-DeHfmnog-StIxxQ,30175
|
|
68
|
-
cybrid_api_bank/model/deposit_address_state.py,sha256=od16rTbq2ata0tJDo1JCcRu1tebl2xKcm-n9tVDkux8,29359
|
|
69
|
-
cybrid_api_bank/model/deposit_bank_account.py,sha256=-kPKXjWbK2ujaPmOjLWxIY2GzmzHuvRQd3hymZCrO9I,35965
|
|
70
|
-
cybrid_api_bank/model/deposit_bank_account_account_details_inner.py,sha256=tBhqnIAJm1U1WTt7aKeHOFKdCPlCiyseXXxb4nBUnLM,29074
|
|
71
|
-
cybrid_api_bank/model/deposit_bank_account_counterparty_address.py,sha256=vP1W8JvkrcJTSdINcDUQ8v0yZHqp0hZGomwambtwhcs,30831
|
|
72
|
-
cybrid_api_bank/model/deposit_bank_account_list.py,sha256=8fm90qD4LHH8XYnYssZR57lbdfgKJf0Rj397ghtCNOI,30216
|
|
73
|
-
cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py,sha256=jPcVG0mT4XNTYqiH5i76VkFBoSr1um-MUQWl7cQ7OnY,29539
|
|
74
|
-
cybrid_api_bank/model/deposit_bank_account_routing_number_type.py,sha256=YxvKpSXsyycXhxZvZBV8QkDB6HoVuX829TCge6LMX2U,29425
|
|
75
|
-
cybrid_api_bank/model/deposit_bank_account_state.py,sha256=3lGCZBxEawB2_LAEZKyLqYxSDWo1vCrCqgFdeYe1vpU,29371
|
|
76
|
-
cybrid_api_bank/model/error_response.py,sha256=X30SsKpVXoL-G3ZSYoV4us9Z6Bhy_raWccx40hHOPFU,29573
|
|
77
|
-
cybrid_api_bank/model/external_bank_account.py,sha256=76-eRoDKqRGSVc90J63EEK1vsnMHyVlX-C9UbPdOobE,35892
|
|
78
|
-
cybrid_api_bank/model/external_bank_account_balances.py,sha256=nTFvAzR2hKZLyjzqR-VKaGXFyIT3pLAxX_8woWDROFI,29493
|
|
79
|
-
cybrid_api_bank/model/external_bank_account_kind.py,sha256=bRj7yK2BXh0EoW5hqbERCcSPo59sH3N7A37fbeYQUK4,29593
|
|
80
|
-
cybrid_api_bank/model/external_bank_account_list.py,sha256=A4y82X2AWj8K7JFPtqdF5-iZkdQB-L_jbKxWPgaUzeQ,30306
|
|
81
|
-
cybrid_api_bank/model/external_bank_account_pii_inner.py,sha256=ar4vgYOfh8jlBhZaSssWGDt3Z5O3bIvRPkclCpS-XDw,31852
|
|
82
|
-
cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py,sha256=trMwnv4onAr1r33Dk3NxUZock7DIxetqv04xfLae2xI,30725
|
|
83
|
-
cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py,sha256=kh69YSAE5o8tGmMOBgxlnZvVR9anIbXyEoZSp-DSn8U,29550
|
|
84
|
-
cybrid_api_bank/model/external_bank_account_state.py,sha256=rUB6ZxKLru13hA2liT4ZlBRYnBXZoRtVmd19VkkPpuA,29848
|
|
85
|
-
cybrid_api_bank/model/external_wallet.py,sha256=WAy8TIbVo0YzBc6YOo9eJgc7e9KscTHyEOp-N5_kOj8,33331
|
|
86
|
-
cybrid_api_bank/model/external_wallet_environment.py,sha256=n4dE75o1o1ZLaT03XosLjUGMs4ZeOsVTnw7r21PkwRM,29395
|
|
87
|
-
cybrid_api_bank/model/external_wallet_list.py,sha256=8-SAmfqqiY6SwNl8wy86DvAtZBIOzH9sWpEt1yMHX4Q,30243
|
|
88
|
-
cybrid_api_bank/model/external_wallet_state.py,sha256=MUo3CKldzirLeSGaqRoxcn_gdqd3gGWv-5jfpeNMZl8,29683
|
|
89
|
-
cybrid_api_bank/model/identification_number.py,sha256=m5ABaKNhaq-mIssDCAahs8zOHrGnKGZch-a3MAqbfOo,30385
|
|
90
|
-
cybrid_api_bank/model/identity_verification.py,sha256=O4WuR0wZR9q5pCMB-gcP9AiGDhb7F5Gj-o777qqZ2Rc,34272
|
|
91
|
-
cybrid_api_bank/model/identity_verification_business_associate.py,sha256=FAoJKLl4cpm0OJ0r_oLAD6gV69PKdQ6TCrUyz4aMNBY,31528
|
|
92
|
-
cybrid_api_bank/model/identity_verification_document.py,sha256=CygM2Wmq6KoMPnVGHkaHshCfkg4ilUU5GcrKqpABx4A,30910
|
|
93
|
-
cybrid_api_bank/model/identity_verification_document_file.py,sha256=_L1a3hcH1j_x5A7xrjHAgPPPtsgBF2Au8T27xP9BEyc,30345
|
|
94
|
-
cybrid_api_bank/model/identity_verification_list.py,sha256=iOaazuMVbzkL0bO2qNwY3EsP4EnXYm9r7qQCGpsSjQg,30235
|
|
95
|
-
cybrid_api_bank/model/identity_verification_method.py,sha256=rcwx4EELpk0XFADrHXqMqgG94CxS-UW6xBNSz7EIemE,30802
|
|
96
|
-
cybrid_api_bank/model/identity_verification_options.py,sha256=lTkTb8QXsOjCe9kpbggeaveSMYe7B7VtQRYU9w4JQRM,29063
|
|
97
|
-
cybrid_api_bank/model/identity_verification_outcome.py,sha256=qVo3vaDlna_S4pj0rx-b1m9F4-Qtdq1c54DgVuZFWU4,29371
|
|
98
|
-
cybrid_api_bank/model/identity_verification_persona_state.py,sha256=DIN6ydQhpnOt0u6K7mar7kjPp3kdHslR2DvqzB9gxX4,29830
|
|
99
|
-
cybrid_api_bank/model/identity_verification_state.py,sha256=Glt_3h7yIOyVt4x461G79joIBiIzo8LPPXRL-WriQ1g,29713
|
|
100
|
-
cybrid_api_bank/model/identity_verification_type.py,sha256=2NYrIs-8XDgTbxNNTuTXyh_7h3fLqKloKi0GWEss4XQ,29488
|
|
101
|
-
cybrid_api_bank/model/identity_verification_with_details.py,sha256=1SftBIA7kk2Du6W9IXyBcApMgp7FTViAc0-fk44R5ns,38068
|
|
102
|
-
cybrid_api_bank/model/identity_verification_with_details_pii.py,sha256=tl7Oy6IOtzsuCu6LuCTKuqzOw1gYHkA_SfiOE2GZO90,32900
|
|
103
|
-
cybrid_api_bank/model/identity_verification_with_details_pii_address.py,sha256=1lqYrudOTVuCC0saRYXq7I9valyUO5hBkzEYygpVNbY,30942
|
|
104
|
-
cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py,sha256=DzBir05YhxcNgHOeUA138n35c6ftRFRGcLKXeJG0CnM,28974
|
|
105
|
-
cybrid_api_bank/model/identity_verification_with_details_pii_name.py,sha256=pBfuWqYReqCg_vTJYWG7z5Xhg_VlwfctDkRjMbYXd5Y,29771
|
|
106
|
-
cybrid_api_bank/model/invoice.py,sha256=cwrTcAWd2icvUVsLzzHxe1pdCwRZevj5xDgg-Mi-Zd8,33342
|
|
107
|
-
cybrid_api_bank/model/invoice_list.py,sha256=fRngygEom9uWzonKyVKVz3jiQ4n0veGW-ojpaBUEeeg,30104
|
|
108
|
-
cybrid_api_bank/model/list_request_page.py,sha256=Dile7tDHMpqe-wTHcTwvQkWB6PIdP1X_Ddyi5Q2VZzE,29267
|
|
109
|
-
cybrid_api_bank/model/list_request_per_page.py,sha256=z-pUa6I8XLBTLQRvX3SrqVlBGINcfMUWmZb6kd8LBBc,29374
|
|
110
|
-
cybrid_api_bank/model/patch_bank.py,sha256=jvd5K7zuhZMwa6hOQWT7lju-fEAnCJVDBZSxiTf4xfA,30806
|
|
111
|
-
cybrid_api_bank/model/patch_customer.py,sha256=8nAnkZylVZKE4PqOYCr-bj5IDnE_KGWjA-xXcRrAYzY,29123
|
|
112
|
-
cybrid_api_bank/model/patch_external_bank_account.py,sha256=6Alk8EuCoNz26kpcpJObaaERxinYhLr2_l8tU1jWhAg,29505
|
|
113
|
-
cybrid_api_bank/model/patch_transfer.py,sha256=QhzPsgANtdXdfIFJBh99NDOCRfQEE4sio8LzZexx0fA,29987
|
|
114
|
-
cybrid_api_bank/model/patch_transfer_participant.py,sha256=yMAqSUq9o5W3r9JB4ENxVQj0SHEJI1lEPKIxU2qEJKw,29707
|
|
115
|
-
cybrid_api_bank/model/payment_instruction.py,sha256=f-n3iYFe3c52eOMgwJnLBSYJK8zE2a31jKyPsyNLxI0,33182
|
|
116
|
-
cybrid_api_bank/model/payment_instruction_list.py,sha256=dNdEvw6_qTmnYGG5qioF8mz4mGtHBgKckSIODn3gyDM,30215
|
|
117
|
-
cybrid_api_bank/model/persona_session.py,sha256=o81GpSlIGBBgBmpsNtJ256h2OKYWWbCurpGuyis6rEE,30108
|
|
118
|
-
cybrid_api_bank/model/platform_file.py,sha256=2FllLKnZ933s4hQM1Tn3dw8-A6D5kQyzBsitEBONIm4,34547
|
|
119
|
-
cybrid_api_bank/model/platform_file_list.py,sha256=M6SIbemU2XB6rVIVWoqsmxmZ0x2oj6sO4KKNS2-DCeg,30201
|
|
120
|
-
cybrid_api_bank/model/post_account.py,sha256=L9HCfrEGWg95GYjo8aCX4yfsJwx6poXs6Uu68py_TRI,30561
|
|
121
|
-
cybrid_api_bank/model/post_bank.py,sha256=5fBAwkwMdIpgU7jLetvz88YRX7RNwpYIJKrba68FrOM,33448
|
|
122
|
-
cybrid_api_bank/model/post_counterparty.py,sha256=-uD8HsF9CCw-vABTxWXESHDlAQpqMRiyFCJp1JXxl0c,31804
|
|
123
|
-
cybrid_api_bank/model/post_counterparty_address.py,sha256=LQROCJ8VApBRWWQevKJhhrRRaozvERmLB8x-MgbDHQ8,31113
|
|
124
|
-
cybrid_api_bank/model/post_counterparty_aliases_inner.py,sha256=0VAcxJOXAphDg4RNa6kFgdjXNgp8th_HdUcZ_rSGAjQ,29014
|
|
125
|
-
cybrid_api_bank/model/post_counterparty_name.py,sha256=th4rxxciml7Ek-1QMc_mbz7JF4v2O0bXYT7HbQwpB8g,30033
|
|
126
|
-
cybrid_api_bank/model/post_customer.py,sha256=MiAEVGuGPMRx0upp1kfXYtj0FzxSc2LQBaPOcbJEJRM,32906
|
|
127
|
-
cybrid_api_bank/model/post_customer_address.py,sha256=gCOQtjddhyzaLG2iCIBbTNyBXfxI1IOUNWkZ5xmOcqs,31100
|
|
128
|
-
cybrid_api_bank/model/post_customer_aliases_inner.py,sha256=Baq_EBqLL_WakJCAO7tx2jwtjzY_ninq0m3KPsM4R_A,28994
|
|
129
|
-
cybrid_api_bank/model/post_customer_name.py,sha256=ZfpwYrB5SXUstDGB4Dlb6B3BTm91J3USUxOBRBRcNCk,29989
|
|
130
|
-
cybrid_api_bank/model/post_deposit_address.py,sha256=dafaY4wOTE1Kgu8GJiWv3gVS1EU66lLag5FlVCDJwVw,29478
|
|
131
|
-
cybrid_api_bank/model/post_deposit_bank_account.py,sha256=84Yub1_yClXaXITzpozw8NvZYSRR-sWQLhJqWa6caf4,31878
|
|
132
|
-
cybrid_api_bank/model/post_external_bank_account.py,sha256=oQ80vwYQWKfqaXyu6Eu4IB4pds3z-quyljY2poG69X8,36910
|
|
133
|
-
cybrid_api_bank/model/post_external_bank_account_counterparty_address.py,sha256=XslC1qbdYSF2oH9nKJASZKu8z09moAs174gUXuhW9jA,32204
|
|
134
|
-
cybrid_api_bank/model/post_external_bank_account_counterparty_bank_account.py,sha256=3EgKZaelaMjHdW5ArW2Po2oVyB6aYP7s52g1AiEhEoY,30111
|
|
135
|
-
cybrid_api_bank/model/post_external_bank_account_counterparty_name.py,sha256=w2UAItr2DBWi3wyR6E0vu-LlmkI9wR8wNrOxhGlJGz4,30700
|
|
136
|
-
cybrid_api_bank/model/post_external_wallet.py,sha256=0_vkRH2xUxZz2FV6g_tjlofR0UIucOsNfWrMuFiUQqY,30976
|
|
137
|
-
cybrid_api_bank/model/post_fee.py,sha256=pWYj7O0P9Tpa76MWHqGAAuGIa-fzpO4pG-58E460h8Y,29863
|
|
138
|
-
cybrid_api_bank/model/post_file.py,sha256=yeK5vX23OnVXitH4tkbMrhODSZVtRXrxz4afKOZdfsY,31664
|
|
139
|
-
cybrid_api_bank/model/post_identification_number.py,sha256=pmXdwgQcpofvAwX9KwlqR5D135lEtzBk0XUaUtAmwXQ,30552
|
|
140
|
-
cybrid_api_bank/model/post_identity_verification.py,sha256=pxxib_WuqhvDA5l5WAw8S4pLOhRnKvjm_N1_mxrTMYo,42525
|
|
141
|
-
cybrid_api_bank/model/post_identity_verification_address.py,sha256=4n1k4cOJ3KAxHn5VP6FcYmOg6ocb1KfdunVGrBa6O-g,33707
|
|
142
|
-
cybrid_api_bank/model/post_identity_verification_aliases_inner.py,sha256=IU6S91UxzCPZQW5DACLsign8RE5bBi8eIciiyqEKFJg,29110
|
|
143
|
-
cybrid_api_bank/model/post_identity_verification_name.py,sha256=3DeiOMCSZhw83Un3k0KYLGyhzPoUI2gWRQ8fD1dqBzY,31219
|
|
144
|
-
cybrid_api_bank/model/post_invoice.py,sha256=0LI2MUkb7UNfyfvQe66YLEH_wS86Ks1L27v-ll9htM0,31754
|
|
145
|
-
cybrid_api_bank/model/post_payment_instruction.py,sha256=x8ijv0GPNCL2eXsitAJJRHmPmClts-3vBBy9iI6DeNc,29744
|
|
146
|
-
cybrid_api_bank/model/post_persona_session.py,sha256=oNR2ZK-UG0g0OzM1NAsMdYfGnAxu9vC7xvYuf5yajQo,29653
|
|
147
|
-
cybrid_api_bank/model/post_quote.py,sha256=wSzpvAeOFVIou_pdzgEFOtMVBfBHylLs20d2GmouWe0,38018
|
|
148
|
-
cybrid_api_bank/model/post_quote_entry.py,sha256=ZwkJ0aCwicDSYvgcHCn8zA1z9NGYJ36sHMUbdU19bSA,30547
|
|
149
|
-
cybrid_api_bank/model/post_supported_payout_symbols.py,sha256=emDajJg7sEvkRFkw7RR2fM2mM0HQl-BR4dS3PrVIQP8,30973
|
|
150
|
-
cybrid_api_bank/model/post_trade.py,sha256=Cdd-u3TOlY7ApUwbuCXygtF6xdc9psW2TjrKycNDE_s,31144
|
|
151
|
-
cybrid_api_bank/model/post_transfer.py,sha256=mjIpr91BhtKYfn6FCMzcEvNa32RHZu-sAbhvvI6zlXI,41082
|
|
152
|
-
cybrid_api_bank/model/post_transfer_participant.py,sha256=AMaYhy5Ig7ApjSiTfS3QrHHOThCHx5EQgRzUcS2LRKo,29704
|
|
153
|
-
cybrid_api_bank/model/post_ultimate_beneficial_owner.py,sha256=0-PNUjwaIIkCb7PIiOytEeYaHUFAR32b52oxJSVcwj4,29568
|
|
154
|
-
cybrid_api_bank/model/post_workflow.py,sha256=ec04Rnl3-6VaRKzSLyk7TlPvlwA9vSMttNopgVQBzQQ,33013
|
|
155
|
-
cybrid_api_bank/model/quote.py,sha256=5gdEXPaun0vE9eps7cDywwaJcmomq5AX5opev23k6Pk,37004
|
|
156
|
-
cybrid_api_bank/model/quote_entry.py,sha256=gI3z_w2d5QgrVEGqofB7uyJtjUYxRJhAo6oMJd8Vf4E,30582
|
|
157
|
-
cybrid_api_bank/model/quote_entry_destination_account.py,sha256=u-jpc4TTi4mb70tjQSzUMFl9IpKdHOEYVYCZKB-QO6s,30367
|
|
158
|
-
cybrid_api_bank/model/quote_entry_source_account.py,sha256=4tSrGw4H3-Ugi7Pun5k8T4TjPMx34RSOoNI5klcnVgo,30137
|
|
159
|
-
cybrid_api_bank/model/quote_list.py,sha256=0T5nmt4JeNKiHiKFfSDsOtvqyIufXPIlsi7K2UtIyHk,30084
|
|
160
|
-
cybrid_api_bank/model/quote_side.py,sha256=akadzouHJHPHHvDBJpJ7EA21VhXTvSDxCE-wfgwimeA,29461
|
|
161
|
-
cybrid_api_bank/model/quote_type.py,sha256=mk-M74T0SXtuCjzb0Z_pKSZQRMpSa3udcW-L0MwImmE,29821
|
|
162
|
-
cybrid_api_bank/model/symbol_price.py,sha256=KLCfcA-7KSKfji7NDi-HsXFgC3QIyxwNtmIaqy122M0,32349
|
|
163
|
-
cybrid_api_bank/model/symbol_price_response.py,sha256=WqtV-3qTnYDEJdmKg_9H1do2dWxXtmVxQFOZdfUlq88,29416
|
|
164
|
-
cybrid_api_bank/model/symbols.py,sha256=56ABxZ6N_lM3--UPyDqFhFdRvMTpQDOwPgoJOYNPP5E,29244
|
|
165
|
-
cybrid_api_bank/model/trade.py,sha256=h4dUyITpj90Nl0RovRYBRJQ13Emk9mnRSKGBq3XXcZQ,34305
|
|
166
|
-
cybrid_api_bank/model/trade_failure_code.py,sha256=ceX9jAM0pdZLEwo3Q5ZCCVhNyH9OctRneMbg5QqhH0o,29920
|
|
167
|
-
cybrid_api_bank/model/trade_list.py,sha256=_NK5c1nS8q1tGzRpnPE3lhsfmFuG7u2LjwdqdQfLOUg,30132
|
|
168
|
-
cybrid_api_bank/model/trade_side.py,sha256=eJ8uLSSWnrnYDfiPFEuDrLO9tMSGWbkjGK4iMMekoXI,29287
|
|
169
|
-
cybrid_api_bank/model/trade_state.py,sha256=1OPb03aZwkieBbxrNEnVjV9M3tfc_KxUu_tq9Q8Iib8,29668
|
|
170
|
-
cybrid_api_bank/model/trade_type.py,sha256=CSxmkSFznNA5n2kLkMWxKhVo0dBI4k6WbAfgi2ZdqkY,29419
|
|
171
|
-
cybrid_api_bank/model/transfer.py,sha256=HQO5CBKNiH3om5MIfl7r_1pK63zEPTjQss-mEesOgjg,43870
|
|
172
|
-
cybrid_api_bank/model/transfer_account_type.py,sha256=I3PkuRskJ5GnwjX1Su3cJjetN7rIaB0eIYfsjZRVSYE,30169
|
|
173
|
-
cybrid_api_bank/model/transfer_destination_account.py,sha256=YFRvIoRpxVsCGuz9-QRcHC84bOvnXZcCWTIrS4QV8ho,30360
|
|
174
|
-
cybrid_api_bank/model/transfer_entry.py,sha256=USQgeS5O5PML8gyNG17Nh2x03Gez5oHw3xu6o5wG_vw,30473
|
|
175
|
-
cybrid_api_bank/model/transfer_entry_destination_account.py,sha256=CrjptnZWQc3kIFX65KQ5ktrhXyYL9SrA3J5BMQKHXBM,30375
|
|
176
|
-
cybrid_api_bank/model/transfer_failure_code.py,sha256=iKhqhYbX_mmr7RDmbMChwEK46t7jNkPVoglN8etaNQA,31249
|
|
177
|
-
cybrid_api_bank/model/transfer_hold_details.py,sha256=U5l2nOGQVEGcWS0E1h0ChegElPErDp1bgern44ZArGY,29873
|
|
178
|
-
cybrid_api_bank/model/transfer_list.py,sha256=1m_8xGpm0YVR_uBADeH2rUZsRD1X_QKVejOq1zeq3Lk,30162
|
|
179
|
-
cybrid_api_bank/model/transfer_participant.py,sha256=IiY4e7Ue3ppFJ-5nRiZRetSHFEnsseoH_8j5NG4Iazo,29640
|
|
180
|
-
cybrid_api_bank/model/transfer_side.py,sha256=sbuCJoevGojbyKn-IojXLnMOvOUGkPtteoC_EA4Mt-U,29356
|
|
181
|
-
cybrid_api_bank/model/transfer_source_account.py,sha256=CO96IxUC8sCQ9JuCABDBONOHep4lK3N3w8u2e8AuKd8,30345
|
|
182
|
-
cybrid_api_bank/model/transfer_state.py,sha256=u3j3FikUFoDxfrAgKhWqUD1C5wFaBYI0pIe5GE_hxSI,29671
|
|
183
|
-
cybrid_api_bank/model/transfer_type.py,sha256=Tlq6Hs4l4dIP73ZGblb8Ly_Pq01q1FjK2i45XqVBU0o,30238
|
|
184
|
-
cybrid_api_bank/model/workflow.py,sha256=wqAxNHBCgDO5QPd7eM0F-99z2clupdiGevmbUd2El50,31365
|
|
185
|
-
cybrid_api_bank/model/workflow_state.py,sha256=DdS0lLWW-R9iq7XBmTsQKuV7h01PUaakdwgx4VViuM0,29425
|
|
186
|
-
cybrid_api_bank/model/workflow_type.py,sha256=RVvYvGbgn4VeTZzqoZTt4FRogWybSl8rfXwmQJgsRU0,28958
|
|
187
|
-
cybrid_api_bank/model/workflow_with_details.py,sha256=Gb1eIH2Yt2sWTb9HbDsvdy1T2Zevk3Xm4MMzSZD090c,34111
|
|
188
|
-
cybrid_api_bank/model/workflow_with_details_all_of.py,sha256=SSoy49dwts-Oi_OGjLAozUYIPQB-MEaR5LYNqvsA8Ew,29034
|
|
189
|
-
cybrid_api_bank/model/workflows_list.py,sha256=yKIHzLhacBRdZ_hQGBd-UvuRcmU5S_U2SYIF9MS2s0k,30171
|
|
190
|
-
cybrid_api_bank/models/__init__.py,sha256=WkvCwYP9cDYVdGAE6cpQSsxKXoS_2rWMK2kqZOXsgKU,12542
|
|
191
|
-
cybrid_api_bank_python-0.125.49.dist-info/METADATA,sha256=YYecibgYl9EytD767CONTY8nFEE_Ne34RUd3d5LsC2c,689
|
|
192
|
-
cybrid_api_bank_python-0.125.49.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
193
|
-
cybrid_api_bank_python-0.125.49.dist-info/top_level.txt,sha256=4OBbfMqeuLQrqskZXyon88Z3vMFpHx9bgQciwkeZJC4,16
|
|
194
|
-
cybrid_api_bank_python-0.125.49.dist-info/RECORD,,
|
{cybrid_api_bank_python-0.125.49.dist-info → cybrid_api_bank_python-0.125.59.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|