cybrid-api-bank-python 0.124.23__tar.gz → 0.125.307__tar.gz
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.
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/PKG-INFO +1 -1
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/README.md +30 -7
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/__init__.py +28 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/accounts_bank_api.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/assets_bank_api.py +188 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/banks_bank_api.py +3 -3
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/counterparties_bank_api.py +11 -5
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/customers_bank_api.py +11 -5
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/deposit_addresses_bank_api.py +3 -3
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/deposit_bank_accounts_bank_api.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/executions_bank_api.py +312 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/external_bank_accounts_bank_api.py +12 -6
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/external_wallets_bank_api.py +10 -4
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/files_bank_api.py +4 -4
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/identity_verifications_bank_api.py +18 -6
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/invoices_bank_api.py +3 -3
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/payment_instructions_bank_api.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/persona_sessions_bank_api.py +177 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/plans_bank_api.py +312 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/prices_bank_api.py +205 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/quotes_bank_api.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/api/symbols_bank_api.py +163 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/trades_bank_api.py +4 -4
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/transfers_bank_api.py +4 -4
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/workflows_bank_api.py +3 -3
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api_client.py +2 -2
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/apis/__init__.py +2 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/configuration.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/exceptions.py +159 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/account.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/account_association.py +330 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/account_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/account_state.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/account_type.py +296 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/activity_limit.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/activity_side.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/activity_type.py +293 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/asset.py +309 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/asset_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/asset_types.py +291 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/bank.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/bank_feature.py +298 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/bank_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/bank_supported_payout_symbols_inner.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/bank_type.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_check.py +280 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_check_outcome.py +293 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_check_type.py +302 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_decision.py +284 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_decision_state.py +293 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/compliance_decision_type.py +302 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/counterparty.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_address.py +284 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_aliases_inner.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_name.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_state.py +293 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/counterparty_type.py +291 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/customer.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_address.py +284 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_aliases_inner.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_name.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_state.py +294 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/customer_type.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_address.py +324 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_address_format.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_address_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_address_state.py +291 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/deposit_bank_account.py +6 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_account_details_inner.py +270 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_counterparty_address.py +298 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_routing_number_type.py +292 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/deposit_bank_account_state.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/error_response.py +282 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/execution.py +370 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/execution_travel_rule_info.py +290 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/external_bank_account.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_balances.py +274 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_kind.py +292 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_pii_inner.py +294 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py +284 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_bank_account_state.py +296 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/external_wallet.py +3 -3
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_wallet_environment.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_wallet_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/external_wallet_state.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/fee_association.py +286 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identification_number.py +282 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/identity_verification.py +8 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_business_associate.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_document.py +290 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_document_file.py +280 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_method.py +300 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_options.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_outcome.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_persona_state.py +296 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_state.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_type.py +292 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/identity_verification_with_details.py +14 -8
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/identity_verification_with_details_pii.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_with_details_pii_address.py +298 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/identity_verification_with_details_pii_name.py +276 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/invoice.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/invoice_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/list_request_page.py +290 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/list_request_per_page.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/patch_bank.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/patch_customer.py +268 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/patch_external_bank_account.py +274 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/patch_transfer.py +282 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/patch_transfer_participant.py +291 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/payment_instruction.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/payment_instruction_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/persona_session.py +282 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/plan.py +366 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/plan_travel_rule_info.py +290 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/platform_file.py +4 -4
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/platform_file_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_account.py +311 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_bank.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_bank_account_details.py +331 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_counterparty.py +335 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_counterparty_address.py +302 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_counterparty_aliases_inner.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_counterparty_name.py +276 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_customer.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_customer_address.py +302 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_customer_aliases_inner.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_customer_name.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_deposit_address.py +281 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_deposit_bank_account.py +307 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_execution.py +274 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_external_bank_account.py +8 -8
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_external_bank_account_counterparty_address.py +292 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_external_bank_account_counterparty_name.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_external_wallet.py +327 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_fee.py +282 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_file.py +333 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_identification_number.py +295 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_identity_verification.py +6 -2
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_identity_verification_address.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_identity_verification_aliases_inner.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_identity_verification_name.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_invoice.py +305 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_payment_instruction.py +281 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_persona_session.py +276 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_plan.py +317 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_plan_destination_account.py +278 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_plan_source_account.py +278 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_plan_travel_rule_info.py +276 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_quote.py +5 -6
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_quote_entry.py +289 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_supported_payout_symbols.py +308 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_trade.py +306 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_transfer.py +5 -4
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_transfer_participant.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/post_ultimate_beneficial_owner.py +280 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/post_workflow.py +2 -2
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/quote.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_entry.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_entry_destination_account.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_entry_source_account.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_side.py +293 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/quote_type.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/stage.py +328 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/symbol_price.py +304 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/symbol_price_response.py +292 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/symbols.py +287 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/trade.py +6 -6
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/trade_failure_code.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/trade_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/trade_side.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/trade_state.py +296 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/trade_type.py +292 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/transfer.py +22 -8
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_account_type.py +299 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_destination_account.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_entry.py +296 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_entry_destination_account.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_failure_code.py +305 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_hold_details.py +272 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_identifiers_inner.py +274 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_list.py +303 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_participant.py +284 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_side.py +291 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_source_account.py +288 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_state.py +295 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/transfer_type.py +299 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/travel_rule_info_party.py +280 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/workflow.py +304 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/workflow_state.py +292 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/workflow_type.py +282 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/workflow_with_details.py +2 -2
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/workflow_with_details_all_of.py +264 -0
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/model/workflows_list.py +303 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model_utils.py +2 -2
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/models/__init__.py +16 -1
- cybrid_api_bank_python-0.125.307/cybrid_api_bank/rest.py +353 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank_python.egg-info/PKG-INFO +1 -1
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank_python.egg-info/SOURCES.txt +36 -2
- cybrid_api_bank_python-0.125.307/setup.py +43 -0
- cybrid_api_bank_python-0.125.307/test/test_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_account_association.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_account_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_account_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_account_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_accounts_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_activity_limit.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_activity_side.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_activity_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_asset.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_asset_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_asset_types.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_assets_bank_api.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_bank.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_bank_feature.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_bank_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_bank_supported_payout_symbols_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_bank_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_banks_bank_api.py +57 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_check.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_check_outcome.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_check_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_decision.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_decision_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_compliance_decision_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparties_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_counterparty_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customer.py +48 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customer_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_customers_bank_api.py +57 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_address_format.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_address_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_address_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_addresses_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account.py +42 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_account_details_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_counterparty_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_routing_details_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_routing_number_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_account_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_deposit_bank_accounts_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_error_response.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_execution.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_execution_travel_rule_info.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_executions_bank_api.py +43 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_balances.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_kind.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_pii_inner.py +42 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_pii_inner_addresses_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_pii_inner_routing_details_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_account_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_bank_accounts_bank_api.py +64 -0
- cybrid_api_bank_python-0.125.307/test/test_external_wallet.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_wallet_environment.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_wallet_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_external_wallet_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_external_wallets_bank_api.py +57 -0
- cybrid_api_bank_python-0.125.307/test/test_fee_association.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_files_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_identification_number.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_business_associate.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_document.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_document_file.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_method.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_options.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_outcome.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_persona_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_with_details.py +48 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_with_details_pii.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_with_details_pii_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_with_details_pii_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verification_with_details_pii_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_identity_verifications_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_invoice.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_invoice_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_invoices_bank_api.py +57 -0
- cybrid_api_bank_python-0.125.307/test/test_list_request_page.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_list_request_per_page.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_patch_bank.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_patch_customer.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_patch_external_bank_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_patch_transfer.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_patch_transfer_participant.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_payment_instruction.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_payment_instruction_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_payment_instructions_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_persona_session.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_persona_sessions_bank_api.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_plan.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_plan_travel_rule_info.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_plans_bank_api.py +43 -0
- cybrid_api_bank_python-0.125.307/test/test_platform_file.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_platform_file_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_post_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_bank.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_post_bank_account_details.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_counterparty.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_post_counterparty_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_counterparty_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_counterparty_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_customer.py +44 -0
- cybrid_api_bank_python-0.125.307/test/test_post_customer_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_customer_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_customer_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_deposit_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_deposit_bank_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_execution.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_external_bank_account.py +42 -0
- cybrid_api_bank_python-0.125.307/test/test_post_external_bank_account_counterparty_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_external_bank_account_counterparty_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_external_wallet.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_fee.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_file.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_identification_number.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_identity_verification.py +46 -0
- cybrid_api_bank_python-0.125.307/test/test_post_identity_verification_address.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_identity_verification_aliases_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_identity_verification_name.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_invoice.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_payment_instruction.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_persona_session.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_plan.py +42 -0
- cybrid_api_bank_python-0.125.307/test/test_post_plan_destination_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_plan_source_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_plan_travel_rule_info.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_quote.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_post_quote_entry.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_supported_payout_symbols.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_trade.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_transfer.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_post_transfer_participant.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_ultimate_beneficial_owner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_post_workflow.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_prices_bank_api.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_quote.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_entry.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_entry_destination_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_entry_source_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_side.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_quote_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_quotes_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_stage.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_symbol_price.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_symbol_price_response.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_symbols.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_symbols_bank_api.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trade.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trade_failure_code.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trade_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_trade_side.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trade_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trade_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_trades_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer.py +48 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_account_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_destination_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_entry.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_entry_destination_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_failure_code.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_hold_details.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_identifiers_inner.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_list.py +38 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_participant.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_side.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_source_account.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfer_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_transfers_bank_api.py +57 -0
- cybrid_api_bank_python-0.125.307/test/test_travel_rule_info_party.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_workflow.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_workflow_state.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_workflow_type.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_workflow_with_details.py +40 -0
- cybrid_api_bank_python-0.125.307/test/test_workflow_with_details_all_of.py +36 -0
- cybrid_api_bank_python-0.125.307/test/test_workflows_bank_api.py +50 -0
- cybrid_api_bank_python-0.125.307/test/test_workflows_list.py +38 -0
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/__init__.py +0 -28
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/assets_bank_api.py +0 -188
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/persona_sessions_bank_api.py +0 -177
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/prices_bank_api.py +0 -205
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/symbols_bank_api.py +0 -163
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/exceptions.py +0 -159
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_state.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_type.py +0 -296
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_limit.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_side.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_type.py +0 -293
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset.py +0 -309
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset_types.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_feature.py +0 -296
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_supported_payout_symbols_inner.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_type.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check.py +0 -280
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check_outcome.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check_type.py +0 -302
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision.py +0 -280
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision_state.py +0 -293
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision_type.py +0 -302
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_address.py +0 -284
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_aliases_inner.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_state.py +0 -293
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_type.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_address.py +0 -284
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_aliases_inner.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_state.py +0 -294
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_type.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address.py +0 -324
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_format.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_state.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_account_details_inner.py +0 -270
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_counterparty_address.py +0 -298
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_routing_number_type.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_state.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/error_response.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_balances.py +0 -274
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_kind.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner.py +0 -294
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py +0 -284
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_state.py +0 -296
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_environment.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_state.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identification_number.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_business_associate.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_document.py +0 -290
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_document_file.py +0 -280
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_method.py +0 -300
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_outcome.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_persona_state.py +0 -296
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_state.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_type.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_address.py +0 -298
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py +0 -264
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/invoice_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/list_request_page.py +0 -290
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/list_request_per_page.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_bank.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_customer.py +0 -268
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_external_bank_account.py +0 -274
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_transfer.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_transfer_participant.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/payment_instruction_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/persona_session.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/platform_file_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_account.py +0 -311
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty.py +0 -321
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_address.py +0 -302
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_aliases_inner.py +0 -264
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_address.py +0 -302
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_aliases_inner.py +0 -264
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_deposit_address.py +0 -281
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_deposit_bank_account.py +0 -307
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_address.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_bank_account.py +0 -277
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_wallet.py +0 -316
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_fee.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_file.py +0 -332
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identification_number.py +0 -294
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identity_verification_aliases_inner.py +0 -264
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identity_verification_name.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_invoice.py +0 -305
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_payment_instruction.py +0 -281
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_persona_session.py +0 -276
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_quote_entry.py +0 -289
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_supported_payout_symbols.py +0 -308
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_trade.py +0 -307
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_transfer_participant.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_ultimate_beneficial_owner.py +0 -280
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry_destination_account.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry_source_account.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_side.py +0 -293
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_type.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbol_price.py +0 -304
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbol_price_response.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbols.py +0 -287
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_failure_code.py +0 -294
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_side.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_state.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_type.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_account_type.py +0 -299
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_destination_account.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_entry.py +0 -296
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_entry_destination_account.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_failure_code.py +0 -304
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_hold_details.py +0 -272
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_participant.py +0 -284
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_side.py +0 -291
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_source_account.py +0 -288
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_state.py +0 -295
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_type.py +0 -299
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow.py +0 -304
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_state.py +0 -292
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_type.py +0 -282
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_with_details_all_of.py +0 -264
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflows_list.py +0 -303
- cybrid_api_bank_python-0.124.23/cybrid_api_bank/rest.py +0 -353
- cybrid_api_bank_python-0.124.23/setup.py +0 -43
- cybrid_api_bank_python-0.124.23/test/test_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_account_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_account_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_account_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_accounts_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_activity_limit.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_activity_side.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_activity_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_asset.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_asset_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_asset_types.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_assets_bank_api.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_bank.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_bank_feature.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_bank_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_bank_supported_payout_symbols_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_bank_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_banks_bank_api.py +0 -57
- cybrid_api_bank_python-0.124.23/test/test_compliance_check.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_compliance_check_outcome.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_compliance_check_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_compliance_decision.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_compliance_decision_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_compliance_decision_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_counterparties_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_counterparty.py +0 -44
- cybrid_api_bank_python-0.124.23/test/test_counterparty_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_counterparty_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_counterparty_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_counterparty_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_counterparty_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_counterparty_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customer.py +0 -48
- cybrid_api_bank_python-0.124.23/test/test_customer_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customer_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customer_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_customer_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customer_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customer_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_customers_bank_api.py +0 -57
- cybrid_api_bank_python-0.124.23/test/test_deposit_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_address_format.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_address_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_deposit_address_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_addresses_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account.py +0 -42
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_account_details_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_counterparty_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_routing_details_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_routing_number_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_deposit_bank_accounts_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_error_response.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account.py +0 -40
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_balances.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_kind.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner.py +0 -42
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner_addresses_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner_routing_details_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_account_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_bank_accounts_bank_api.py +0 -64
- cybrid_api_bank_python-0.124.23/test/test_external_wallet.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_wallet_environment.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_wallet_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_external_wallet_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_external_wallets_bank_api.py +0 -57
- cybrid_api_bank_python-0.124.23/test/test_files_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_identification_number.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_business_associate.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_document.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_document_file.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_method.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_outcome.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_persona_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details.py +0 -46
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii.py +0 -44
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_identity_verifications_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_invoice.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_invoice_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_invoices_bank_api.py +0 -57
- cybrid_api_bank_python-0.124.23/test/test_list_request_page.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_list_request_per_page.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_patch_bank.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_patch_customer.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_patch_external_bank_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_patch_transfer.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_patch_transfer_participant.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_payment_instruction.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_payment_instruction_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_payment_instructions_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_persona_session.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_persona_sessions_bank_api.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_platform_file.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_platform_file_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_post_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_bank.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_post_counterparty.py +0 -42
- cybrid_api_bank_python-0.124.23/test/test_post_counterparty_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_counterparty_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_counterparty_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_customer.py +0 -44
- cybrid_api_bank_python-0.124.23/test/test_post_customer_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_customer_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_customer_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_deposit_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_deposit_bank_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account.py +0 -42
- cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_bank_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_external_wallet.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_fee.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_file.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_identification_number.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_identity_verification.py +0 -46
- cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_address.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_aliases_inner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_name.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_invoice.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_payment_instruction.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_persona_session.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_quote.py +0 -40
- cybrid_api_bank_python-0.124.23/test/test_post_quote_entry.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_supported_payout_symbols.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_trade.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_transfer.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_post_transfer_participant.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_ultimate_beneficial_owner.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_post_workflow.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_prices_bank_api.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_quote.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_quote_entry.py +0 -40
- cybrid_api_bank_python-0.124.23/test/test_quote_entry_destination_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_quote_entry_source_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_quote_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_quote_side.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_quote_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_quotes_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_symbol_price.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_symbol_price_response.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_symbols.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_symbols_bank_api.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trade.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trade_failure_code.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trade_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_trade_side.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trade_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trade_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_trades_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_transfer.py +0 -46
- cybrid_api_bank_python-0.124.23/test/test_transfer_account_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_destination_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_entry.py +0 -40
- cybrid_api_bank_python-0.124.23/test/test_transfer_entry_destination_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_failure_code.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_hold_details.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_list.py +0 -38
- cybrid_api_bank_python-0.124.23/test/test_transfer_participant.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_side.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_source_account.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfer_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_transfers_bank_api.py +0 -57
- cybrid_api_bank_python-0.124.23/test/test_workflow.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_workflow_state.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_workflow_type.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_workflow_with_details.py +0 -40
- cybrid_api_bank_python-0.124.23/test/test_workflow_with_details_all_of.py +0 -36
- cybrid_api_bank_python-0.124.23/test/test_workflows_bank_api.py +0 -50
- cybrid_api_bank_python-0.124.23/test/test_workflows_list.py +0 -38
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/api/__init__.py +0 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank/model/__init__.py +0 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank_python.egg-info/dependency_links.txt +0 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank_python.egg-info/requires.txt +0 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/cybrid_api_bank_python.egg-info/top_level.txt +0 -0
- {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.307}/setup.cfg +0 -0
|
@@ -16,10 +16,10 @@ This is Cybrid's public interactive API documentation, which allows you to fully
|
|
|
16
16
|
If you're new to our APIs and the Cybrid Platform, follow the below guides to get set up and familiar with the platform:
|
|
17
17
|
|
|
18
18
|
1. [Introduction](https://docs.cybrid.xyz/docs/introduction)
|
|
19
|
-
2. [Platform
|
|
20
|
-
3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/
|
|
19
|
+
2. [Platform Overview](https://docs.cybrid.xyz/docs/platform-overview)
|
|
20
|
+
3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/hosted-demo-app)
|
|
21
21
|
|
|
22
|
-
In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/
|
|
22
|
+
In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/cybrid-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://docs.cybrid.xyz/docs/trade-process), we walk through creating customers, customer identities, accounts, as well as executing quotes and trades.
|
|
23
23
|
|
|
24
24
|
## Working with the Cybrid Platform
|
|
25
25
|
|
|
@@ -63,10 +63,10 @@ curl -X POST https://id.production.cybrid.app/oauth/token -d '{
|
|
|
63
63
|
\"grant_type\": \"client_credentials\",
|
|
64
64
|
\"client_id\": \"<Your Client ID>\",
|
|
65
65
|
\"client_secret\": \"<Your Secret>\",
|
|
66
|
-
\"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 files:read files:pii:read files:execute\"
|
|
66
|
+
\"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\"
|
|
67
67
|
}' -H \"Content-Type: application/json\"
|
|
68
68
|
|
|
69
|
-
# 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 files:read files:pii:read files:execute'
|
|
69
|
+
# 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'
|
|
70
70
|
```
|
|
71
71
|
<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>
|
|
72
72
|
|
|
@@ -148,7 +148,7 @@ An `Organization` can have multiple `banks`, in either `Sandbox` or `Production`
|
|
|
148
148
|
|
|
149
149
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
150
150
|
|
|
151
|
-
- API version: v0.
|
|
151
|
+
- API version: v0.125.307
|
|
152
152
|
- Package version: 1.0.0
|
|
153
153
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
154
154
|
|
|
@@ -271,6 +271,8 @@ Class | Method | HTTP request | Description
|
|
|
271
271
|
*DepositBankAccountsBankApi* | [**create_deposit_bank_account**](docs/DepositBankAccountsBankApi.md#create_deposit_bank_account) | **POST** /api/deposit_bank_accounts | Create Deposit Bank Account
|
|
272
272
|
*DepositBankAccountsBankApi* | [**get_deposit_bank_account**](docs/DepositBankAccountsBankApi.md#get_deposit_bank_account) | **GET** /api/deposit_bank_accounts/{deposit_bank_account_guid} | Get Deposit Bank Account
|
|
273
273
|
*DepositBankAccountsBankApi* | [**list_deposit_bank_accounts**](docs/DepositBankAccountsBankApi.md#list_deposit_bank_accounts) | **GET** /api/deposit_bank_accounts | List Deposit Bank Accounts
|
|
274
|
+
*ExecutionsBankApi* | [**create_execution**](docs/ExecutionsBankApi.md#create_execution) | **POST** /api/executions | Create Execution
|
|
275
|
+
*ExecutionsBankApi* | [**get_execution**](docs/ExecutionsBankApi.md#get_execution) | **GET** /api/executions/{execution_guid} | Get Execution
|
|
274
276
|
*ExternalBankAccountsBankApi* | [**create_external_bank_account**](docs/ExternalBankAccountsBankApi.md#create_external_bank_account) | **POST** /api/external_bank_accounts | Create ExternalBankAccount
|
|
275
277
|
*ExternalBankAccountsBankApi* | [**delete_external_bank_account**](docs/ExternalBankAccountsBankApi.md#delete_external_bank_account) | **DELETE** /api/external_bank_accounts/{external_bank_account_guid} | Delete External Bank Account
|
|
276
278
|
*ExternalBankAccountsBankApi* | [**get_external_bank_account**](docs/ExternalBankAccountsBankApi.md#get_external_bank_account) | **GET** /api/external_bank_accounts/{external_bank_account_guid} | Get External Bank Account
|
|
@@ -294,6 +296,8 @@ Class | Method | HTTP request | Description
|
|
|
294
296
|
*PaymentInstructionsBankApi* | [**get_payment_instruction**](docs/PaymentInstructionsBankApi.md#get_payment_instruction) | **GET** /api/payment_instructions/{payment_instruction_guid} | Get Payment Instruction
|
|
295
297
|
*PaymentInstructionsBankApi* | [**list_payment_instructions**](docs/PaymentInstructionsBankApi.md#list_payment_instructions) | **GET** /api/payment_instructions | List Payment Instructions
|
|
296
298
|
*PersonaSessionsBankApi* | [**create_persona_session**](docs/PersonaSessionsBankApi.md#create_persona_session) | **POST** /api/persona_sessions | Create Persona Session
|
|
299
|
+
*PlansBankApi* | [**create_plan**](docs/PlansBankApi.md#create_plan) | **POST** /api/plans | Create Plan
|
|
300
|
+
*PlansBankApi* | [**get_plan**](docs/PlansBankApi.md#get_plan) | **GET** /api/plans/{plan_guid} | Get Plan
|
|
297
301
|
*PricesBankApi* | [**list_prices**](docs/PricesBankApi.md#list_prices) | **GET** /api/prices | Get Price
|
|
298
302
|
*QuotesBankApi* | [**create_quote**](docs/QuotesBankApi.md#create_quote) | **POST** /api/quotes | Create Quote
|
|
299
303
|
*QuotesBankApi* | [**get_quote**](docs/QuotesBankApi.md#get_quote) | **GET** /api/quotes/{quote_guid} | Get Quote
|
|
@@ -314,6 +318,7 @@ Class | Method | HTTP request | Description
|
|
|
314
318
|
## Documentation For Models
|
|
315
319
|
|
|
316
320
|
- [Account](docs/Account.md)
|
|
321
|
+
- [AccountAssociation](docs/AccountAssociation.md)
|
|
317
322
|
- [AccountList](docs/AccountList.md)
|
|
318
323
|
- [AccountState](docs/AccountState.md)
|
|
319
324
|
- [AccountType](docs/AccountType.md)
|
|
@@ -360,6 +365,8 @@ Class | Method | HTTP request | Description
|
|
|
360
365
|
- [DepositBankAccountRoutingNumberType](docs/DepositBankAccountRoutingNumberType.md)
|
|
361
366
|
- [DepositBankAccountState](docs/DepositBankAccountState.md)
|
|
362
367
|
- [ErrorResponse](docs/ErrorResponse.md)
|
|
368
|
+
- [Execution](docs/Execution.md)
|
|
369
|
+
- [ExecutionTravelRuleInfo](docs/ExecutionTravelRuleInfo.md)
|
|
363
370
|
- [ExternalBankAccount](docs/ExternalBankAccount.md)
|
|
364
371
|
- [ExternalBankAccountBalances](docs/ExternalBankAccountBalances.md)
|
|
365
372
|
- [ExternalBankAccountKind](docs/ExternalBankAccountKind.md)
|
|
@@ -372,6 +379,7 @@ Class | Method | HTTP request | Description
|
|
|
372
379
|
- [ExternalWalletEnvironment](docs/ExternalWalletEnvironment.md)
|
|
373
380
|
- [ExternalWalletList](docs/ExternalWalletList.md)
|
|
374
381
|
- [ExternalWalletState](docs/ExternalWalletState.md)
|
|
382
|
+
- [FeeAssociation](docs/FeeAssociation.md)
|
|
375
383
|
- [IdentificationNumber](docs/IdentificationNumber.md)
|
|
376
384
|
- [IdentityVerification](docs/IdentityVerification.md)
|
|
377
385
|
- [IdentityVerificationBusinessAssociate](docs/IdentityVerificationBusinessAssociate.md)
|
|
@@ -379,6 +387,7 @@ Class | Method | HTTP request | Description
|
|
|
379
387
|
- [IdentityVerificationDocumentFile](docs/IdentityVerificationDocumentFile.md)
|
|
380
388
|
- [IdentityVerificationList](docs/IdentityVerificationList.md)
|
|
381
389
|
- [IdentityVerificationMethod](docs/IdentityVerificationMethod.md)
|
|
390
|
+
- [IdentityVerificationOptions](docs/IdentityVerificationOptions.md)
|
|
382
391
|
- [IdentityVerificationOutcome](docs/IdentityVerificationOutcome.md)
|
|
383
392
|
- [IdentityVerificationPersonaState](docs/IdentityVerificationPersonaState.md)
|
|
384
393
|
- [IdentityVerificationState](docs/IdentityVerificationState.md)
|
|
@@ -400,10 +409,13 @@ Class | Method | HTTP request | Description
|
|
|
400
409
|
- [PaymentInstruction](docs/PaymentInstruction.md)
|
|
401
410
|
- [PaymentInstructionList](docs/PaymentInstructionList.md)
|
|
402
411
|
- [PersonaSession](docs/PersonaSession.md)
|
|
412
|
+
- [Plan](docs/Plan.md)
|
|
413
|
+
- [PlanTravelRuleInfo](docs/PlanTravelRuleInfo.md)
|
|
403
414
|
- [PlatformFile](docs/PlatformFile.md)
|
|
404
415
|
- [PlatformFileList](docs/PlatformFileList.md)
|
|
405
416
|
- [PostAccount](docs/PostAccount.md)
|
|
406
417
|
- [PostBank](docs/PostBank.md)
|
|
418
|
+
- [PostBankAccountDetails](docs/PostBankAccountDetails.md)
|
|
407
419
|
- [PostCounterparty](docs/PostCounterparty.md)
|
|
408
420
|
- [PostCounterpartyAddress](docs/PostCounterpartyAddress.md)
|
|
409
421
|
- [PostCounterpartyAliasesInner](docs/PostCounterpartyAliasesInner.md)
|
|
@@ -414,9 +426,9 @@ Class | Method | HTTP request | Description
|
|
|
414
426
|
- [PostCustomerName](docs/PostCustomerName.md)
|
|
415
427
|
- [PostDepositAddress](docs/PostDepositAddress.md)
|
|
416
428
|
- [PostDepositBankAccount](docs/PostDepositBankAccount.md)
|
|
429
|
+
- [PostExecution](docs/PostExecution.md)
|
|
417
430
|
- [PostExternalBankAccount](docs/PostExternalBankAccount.md)
|
|
418
431
|
- [PostExternalBankAccountCounterpartyAddress](docs/PostExternalBankAccountCounterpartyAddress.md)
|
|
419
|
-
- [PostExternalBankAccountCounterpartyBankAccount](docs/PostExternalBankAccountCounterpartyBankAccount.md)
|
|
420
432
|
- [PostExternalBankAccountCounterpartyName](docs/PostExternalBankAccountCounterpartyName.md)
|
|
421
433
|
- [PostExternalWallet](docs/PostExternalWallet.md)
|
|
422
434
|
- [PostFee](docs/PostFee.md)
|
|
@@ -429,6 +441,10 @@ Class | Method | HTTP request | Description
|
|
|
429
441
|
- [PostInvoice](docs/PostInvoice.md)
|
|
430
442
|
- [PostPaymentInstruction](docs/PostPaymentInstruction.md)
|
|
431
443
|
- [PostPersonaSession](docs/PostPersonaSession.md)
|
|
444
|
+
- [PostPlan](docs/PostPlan.md)
|
|
445
|
+
- [PostPlanDestinationAccount](docs/PostPlanDestinationAccount.md)
|
|
446
|
+
- [PostPlanSourceAccount](docs/PostPlanSourceAccount.md)
|
|
447
|
+
- [PostPlanTravelRuleInfo](docs/PostPlanTravelRuleInfo.md)
|
|
432
448
|
- [PostQuote](docs/PostQuote.md)
|
|
433
449
|
- [PostQuoteEntry](docs/PostQuoteEntry.md)
|
|
434
450
|
- [PostSupportedPayoutSymbols](docs/PostSupportedPayoutSymbols.md)
|
|
@@ -444,6 +460,7 @@ Class | Method | HTTP request | Description
|
|
|
444
460
|
- [QuoteList](docs/QuoteList.md)
|
|
445
461
|
- [QuoteSide](docs/QuoteSide.md)
|
|
446
462
|
- [QuoteType](docs/QuoteType.md)
|
|
463
|
+
- [Stage](docs/Stage.md)
|
|
447
464
|
- [SymbolPrice](docs/SymbolPrice.md)
|
|
448
465
|
- [SymbolPriceResponse](docs/SymbolPriceResponse.md)
|
|
449
466
|
- [Symbols](docs/Symbols.md)
|
|
@@ -460,12 +477,14 @@ Class | Method | HTTP request | Description
|
|
|
460
477
|
- [TransferEntryDestinationAccount](docs/TransferEntryDestinationAccount.md)
|
|
461
478
|
- [TransferFailureCode](docs/TransferFailureCode.md)
|
|
462
479
|
- [TransferHoldDetails](docs/TransferHoldDetails.md)
|
|
480
|
+
- [TransferIdentifiersInner](docs/TransferIdentifiersInner.md)
|
|
463
481
|
- [TransferList](docs/TransferList.md)
|
|
464
482
|
- [TransferParticipant](docs/TransferParticipant.md)
|
|
465
483
|
- [TransferSide](docs/TransferSide.md)
|
|
466
484
|
- [TransferSourceAccount](docs/TransferSourceAccount.md)
|
|
467
485
|
- [TransferState](docs/TransferState.md)
|
|
468
486
|
- [TransferType](docs/TransferType.md)
|
|
487
|
+
- [TravelRuleInfoParty](docs/TravelRuleInfoParty.md)
|
|
469
488
|
- [Workflow](docs/Workflow.md)
|
|
470
489
|
- [WorkflowState](docs/WorkflowState.md)
|
|
471
490
|
- [WorkflowType](docs/WorkflowType.md)
|
|
@@ -529,6 +548,10 @@ Class | Method | HTTP request | Description
|
|
|
529
548
|
- **identity_verifications:write**: identity_verifications write
|
|
530
549
|
- **identity_verifications:execute**: identity_verifications execute
|
|
531
550
|
- **persona_sessions:execute**: persona_sessions execute
|
|
551
|
+
- **plans:execute**: plans execute
|
|
552
|
+
- **plans:read**: plans read
|
|
553
|
+
- **executions:execute**: executions execute
|
|
554
|
+
- **executions:read**: executions read
|
|
532
555
|
- **files:read**: files read
|
|
533
556
|
- **files:pii:read**: files pii read
|
|
534
557
|
- **files:execute**: files execute
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Cybrid Bank API
|
|
5
|
+
|
|
6
|
+
# 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 Overview](https://docs.cybrid.xyz/docs/platform-overview) 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/hosted-demo-app) In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/cybrid-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://docs.cybrid.xyz/docs/trade-process), 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
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v0.125.307
|
|
9
|
+
Contact: support@cybrid.app
|
|
10
|
+
Generated by: https://openapi-generator.tech
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
__version__ = "1.0.0"
|
|
15
|
+
|
|
16
|
+
# import ApiClient
|
|
17
|
+
from cybrid_api_bank.api_client import ApiClient
|
|
18
|
+
|
|
19
|
+
# import Configuration
|
|
20
|
+
from cybrid_api_bank.configuration import Configuration
|
|
21
|
+
|
|
22
|
+
# import exceptions
|
|
23
|
+
from cybrid_api_bank.exceptions import OpenApiException
|
|
24
|
+
from cybrid_api_bank.exceptions import ApiAttributeError
|
|
25
|
+
from cybrid_api_bank.exceptions import ApiTypeError
|
|
26
|
+
from cybrid_api_bank.exceptions import ApiValueError
|
|
27
|
+
from cybrid_api_bank.exceptions import ApiKeyError
|
|
28
|
+
from cybrid_api_bank.exceptions import ApiException
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Cybrid Bank API
|
|
3
3
|
|
|
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 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 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
|
|
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 Overview](https://docs.cybrid.xyz/docs/platform-overview) 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/hosted-demo-app) In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/cybrid-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://docs.cybrid.xyz/docs/trade-process), 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.
|
|
6
|
+
The version of the OpenAPI document: v0.125.307
|
|
7
7
|
Contact: support@cybrid.app
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -413,7 +413,7 @@ class AccountsBankApi(object):
|
|
|
413
413
|
):
|
|
414
414
|
"""List Accounts # noqa: E501
|
|
415
415
|
|
|
416
|
-
Retrieves a list of accounts. Required scope: **accounts:read** # noqa: E501
|
|
416
|
+
Retrieves a list of accounts. Records are sorted by creation date in descending order. Required scope: **accounts:read** # noqa: E501
|
|
417
417
|
This method makes a synchronous HTTP request by default. To make an
|
|
418
418
|
asynchronous HTTP request, please pass async_req=True
|
|
419
419
|
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Cybrid Bank API
|
|
3
|
+
|
|
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 Overview](https://docs.cybrid.xyz/docs/platform-overview) 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/hosted-demo-app) In [Getting Started in the Cybrid Sandbox](https://docs.cybrid.xyz/docs/cybrid-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://docs.cybrid.xyz/docs/trade-process), 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
|
+
|
|
6
|
+
The version of the OpenAPI document: v0.125.307
|
|
7
|
+
Contact: support@cybrid.app
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
import re # noqa: F401
|
|
13
|
+
import sys # noqa: F401
|
|
14
|
+
|
|
15
|
+
from cybrid_api_bank.api_client import ApiClient, Endpoint as _Endpoint
|
|
16
|
+
from cybrid_api_bank.model_utils import ( # noqa: F401
|
|
17
|
+
check_allowed_values,
|
|
18
|
+
check_validations,
|
|
19
|
+
date,
|
|
20
|
+
datetime,
|
|
21
|
+
file_type,
|
|
22
|
+
none_type,
|
|
23
|
+
validate_and_convert_types
|
|
24
|
+
)
|
|
25
|
+
from cybrid_api_bank.model.asset_list import AssetList
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class AssetsBankApi(object):
|
|
29
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
30
|
+
Ref: https://openapi-generator.tech
|
|
31
|
+
|
|
32
|
+
Do not edit the class manually.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
def __init__(self, api_client=None):
|
|
36
|
+
if api_client is None:
|
|
37
|
+
api_client = ApiClient()
|
|
38
|
+
self.api_client = api_client
|
|
39
|
+
self.list_assets_endpoint = _Endpoint(
|
|
40
|
+
settings={
|
|
41
|
+
'response_type': (AssetList,),
|
|
42
|
+
'auth': [],
|
|
43
|
+
'endpoint_path': '/api/assets',
|
|
44
|
+
'operation_id': 'list_assets',
|
|
45
|
+
'http_method': 'GET',
|
|
46
|
+
'servers': None,
|
|
47
|
+
},
|
|
48
|
+
params_map={
|
|
49
|
+
'all': [
|
|
50
|
+
'page',
|
|
51
|
+
'per_page',
|
|
52
|
+
'code',
|
|
53
|
+
],
|
|
54
|
+
'required': [],
|
|
55
|
+
'nullable': [
|
|
56
|
+
],
|
|
57
|
+
'enum': [
|
|
58
|
+
],
|
|
59
|
+
'validation': [
|
|
60
|
+
'page',
|
|
61
|
+
'per_page',
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
root_map={
|
|
65
|
+
'validations': {
|
|
66
|
+
('page',): {
|
|
67
|
+
|
|
68
|
+
'inclusive_minimum': 0,
|
|
69
|
+
},
|
|
70
|
+
('per_page',): {
|
|
71
|
+
|
|
72
|
+
'inclusive_maximum': 100,
|
|
73
|
+
'inclusive_minimum': 1,
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
'allowed_values': {
|
|
77
|
+
},
|
|
78
|
+
'openapi_types': {
|
|
79
|
+
'page':
|
|
80
|
+
(int,),
|
|
81
|
+
'per_page':
|
|
82
|
+
(int,),
|
|
83
|
+
'code':
|
|
84
|
+
(str,),
|
|
85
|
+
},
|
|
86
|
+
'attribute_map': {
|
|
87
|
+
'page': 'page',
|
|
88
|
+
'per_page': 'per_page',
|
|
89
|
+
'code': 'code',
|
|
90
|
+
},
|
|
91
|
+
'location_map': {
|
|
92
|
+
'page': 'query',
|
|
93
|
+
'per_page': 'query',
|
|
94
|
+
'code': 'query',
|
|
95
|
+
},
|
|
96
|
+
'collection_format_map': {
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
headers_map={
|
|
100
|
+
'accept': [
|
|
101
|
+
'application/json'
|
|
102
|
+
],
|
|
103
|
+
'content_type': [],
|
|
104
|
+
},
|
|
105
|
+
api_client=api_client
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
def list_assets(
|
|
109
|
+
self,
|
|
110
|
+
**kwargs
|
|
111
|
+
):
|
|
112
|
+
"""Get assets list # noqa: E501
|
|
113
|
+
|
|
114
|
+
Retrieves a listing of assets. # noqa: E501
|
|
115
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
116
|
+
asynchronous HTTP request, please pass async_req=True
|
|
117
|
+
|
|
118
|
+
>>> thread = api.list_assets(async_req=True)
|
|
119
|
+
>>> result = thread.get()
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
Keyword Args:
|
|
123
|
+
page (int): The page index to retrieve.. [optional]
|
|
124
|
+
per_page (int): The number of entities per page to return.. [optional]
|
|
125
|
+
code (str): Comma separated codes to list assets for.. [optional]
|
|
126
|
+
_return_http_data_only (bool): response data without head status
|
|
127
|
+
code and headers. Default is True.
|
|
128
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
129
|
+
will be returned without reading/decoding response data.
|
|
130
|
+
Default is True.
|
|
131
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
132
|
+
one number provided, it will be total request timeout. It can also
|
|
133
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
134
|
+
Default is None.
|
|
135
|
+
_check_input_type (bool): specifies if type checking
|
|
136
|
+
should be done one the data sent to the server.
|
|
137
|
+
Default is True.
|
|
138
|
+
_check_return_type (bool): specifies if type checking
|
|
139
|
+
should be done one the data received from the server.
|
|
140
|
+
Default is True.
|
|
141
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
142
|
+
are serialized names, as specified in the OpenAPI document.
|
|
143
|
+
False if the variable names in the input data
|
|
144
|
+
are pythonic names, e.g. snake case (default)
|
|
145
|
+
_content_type (str/None): force body content-type.
|
|
146
|
+
Default is None and content-type will be predicted by allowed
|
|
147
|
+
content-types and body.
|
|
148
|
+
_host_index (int/None): specifies the index of the server
|
|
149
|
+
that we want to use.
|
|
150
|
+
Default is read from the configuration.
|
|
151
|
+
_request_auths (list): set to override the auth_settings for an a single
|
|
152
|
+
request; this effectively ignores the authentication
|
|
153
|
+
in the spec for a single request.
|
|
154
|
+
Default is None
|
|
155
|
+
async_req (bool): execute request asynchronously
|
|
156
|
+
|
|
157
|
+
Returns:
|
|
158
|
+
AssetList
|
|
159
|
+
If the method is called asynchronously, returns the request
|
|
160
|
+
thread.
|
|
161
|
+
"""
|
|
162
|
+
kwargs['async_req'] = kwargs.get(
|
|
163
|
+
'async_req', False
|
|
164
|
+
)
|
|
165
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
166
|
+
'_return_http_data_only', True
|
|
167
|
+
)
|
|
168
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
169
|
+
'_preload_content', True
|
|
170
|
+
)
|
|
171
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
172
|
+
'_request_timeout', None
|
|
173
|
+
)
|
|
174
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
175
|
+
'_check_input_type', True
|
|
176
|
+
)
|
|
177
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
178
|
+
'_check_return_type', True
|
|
179
|
+
)
|
|
180
|
+
kwargs['_spec_property_naming'] = kwargs.get(
|
|
181
|
+
'_spec_property_naming', False
|
|
182
|
+
)
|
|
183
|
+
kwargs['_content_type'] = kwargs.get(
|
|
184
|
+
'_content_type')
|
|
185
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
186
|
+
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
187
|
+
return self.list_assets_endpoint.call_with_http_info(**kwargs)
|
|
188
|
+
|