cybrid-api-bank-python 0.124.23__tar.gz → 0.125.327__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.
Files changed (732) hide show
  1. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/PKG-INFO +1 -1
  2. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/README.md +30 -7
  3. cybrid_api_bank_python-0.125.327/cybrid_api_bank/__init__.py +28 -0
  4. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/accounts_bank_api.py +3 -3
  5. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/assets_bank_api.py +188 -0
  6. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/banks_bank_api.py +3 -3
  7. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/counterparties_bank_api.py +11 -5
  8. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/customers_bank_api.py +11 -5
  9. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/deposit_addresses_bank_api.py +3 -3
  10. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/deposit_bank_accounts_bank_api.py +3 -3
  11. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/executions_bank_api.py +312 -0
  12. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/external_bank_accounts_bank_api.py +12 -6
  13. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/external_wallets_bank_api.py +10 -4
  14. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/files_bank_api.py +4 -4
  15. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/identity_verifications_bank_api.py +18 -6
  16. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/invoices_bank_api.py +3 -3
  17. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/payment_instructions_bank_api.py +3 -3
  18. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/persona_sessions_bank_api.py +177 -0
  19. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/plans_bank_api.py +312 -0
  20. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/prices_bank_api.py +205 -0
  21. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/quotes_bank_api.py +3 -3
  22. cybrid_api_bank_python-0.125.327/cybrid_api_bank/api/symbols_bank_api.py +163 -0
  23. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/trades_bank_api.py +4 -4
  24. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/transfers_bank_api.py +4 -4
  25. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/workflows_bank_api.py +3 -3
  26. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api_client.py +2 -2
  27. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/apis/__init__.py +2 -0
  28. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/configuration.py +3 -3
  29. cybrid_api_bank_python-0.125.327/cybrid_api_bank/exceptions.py +159 -0
  30. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/account.py +2 -2
  31. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/account_association.py +330 -0
  32. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/account_list.py +303 -0
  33. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/account_state.py +291 -0
  34. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/account_type.py +296 -0
  35. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/activity_limit.py +288 -0
  36. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/activity_side.py +291 -0
  37. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/activity_type.py +293 -0
  38. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/asset.py +309 -0
  39. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/asset_list.py +303 -0
  40. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/asset_types.py +291 -0
  41. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/bank.py +2 -2
  42. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/bank_feature.py +298 -0
  43. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/bank_list.py +303 -0
  44. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/bank_supported_payout_symbols_inner.py +276 -0
  45. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/bank_type.py +291 -0
  46. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_check.py +280 -0
  47. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_check_outcome.py +293 -0
  48. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_check_type.py +302 -0
  49. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_decision.py +284 -0
  50. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_decision_state.py +293 -0
  51. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/compliance_decision_type.py +302 -0
  52. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/counterparty.py +2 -2
  53. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_address.py +284 -0
  54. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_aliases_inner.py +276 -0
  55. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_list.py +303 -0
  56. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_name.py +276 -0
  57. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_state.py +293 -0
  58. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/counterparty_type.py +291 -0
  59. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/customer.py +2 -2
  60. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_address.py +284 -0
  61. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_aliases_inner.py +276 -0
  62. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_list.py +303 -0
  63. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_name.py +276 -0
  64. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_state.py +294 -0
  65. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/customer_type.py +291 -0
  66. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_address.py +324 -0
  67. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_address_format.py +291 -0
  68. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_address_list.py +303 -0
  69. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_address_state.py +291 -0
  70. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/deposit_bank_account.py +6 -2
  71. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_account_details_inner.py +270 -0
  72. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_counterparty_address.py +298 -0
  73. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_list.py +303 -0
  74. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py +276 -0
  75. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_routing_number_type.py +292 -0
  76. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/deposit_bank_account_state.py +291 -0
  77. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/error_response.py +282 -0
  78. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/execution.py +370 -0
  79. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/execution_travel_rule_info.py +290 -0
  80. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/external_bank_account.py +2 -2
  81. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_balances.py +274 -0
  82. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_kind.py +292 -0
  83. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_list.py +303 -0
  84. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_pii_inner.py +294 -0
  85. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py +284 -0
  86. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py +276 -0
  87. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_bank_account_state.py +296 -0
  88. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/external_wallet.py +3 -3
  89. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_wallet_environment.py +291 -0
  90. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_wallet_list.py +303 -0
  91. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/external_wallet_state.py +295 -0
  92. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/fee_association.py +286 -0
  93. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identification_number.py +282 -0
  94. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/identity_verification.py +8 -2
  95. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_business_associate.py +288 -0
  96. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_document.py +290 -0
  97. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_document_file.py +280 -0
  98. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_list.py +303 -0
  99. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_method.py +300 -0
  100. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_options.py +264 -0
  101. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_outcome.py +291 -0
  102. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_persona_state.py +296 -0
  103. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_state.py +295 -0
  104. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_type.py +292 -0
  105. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/identity_verification_with_details.py +14 -8
  106. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/identity_verification_with_details_pii.py +2 -2
  107. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_with_details_pii_address.py +298 -0
  108. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py +264 -0
  109. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/identity_verification_with_details_pii_name.py +276 -0
  110. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/invoice.py +2 -2
  111. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/invoice_list.py +303 -0
  112. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/list_request_page.py +290 -0
  113. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/list_request_per_page.py +291 -0
  114. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/patch_bank.py +295 -0
  115. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/patch_customer.py +268 -0
  116. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/patch_external_bank_account.py +274 -0
  117. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/patch_transfer.py +282 -0
  118. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/patch_transfer_participant.py +291 -0
  119. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/payment_instruction.py +2 -2
  120. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/payment_instruction_list.py +303 -0
  121. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/persona_session.py +282 -0
  122. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/plan.py +366 -0
  123. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/plan_travel_rule_info.py +290 -0
  124. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/platform_file.py +4 -4
  125. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/platform_file_list.py +303 -0
  126. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_account.py +311 -0
  127. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_bank.py +2 -2
  128. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_bank_account_details.py +331 -0
  129. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_counterparty.py +335 -0
  130. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_counterparty_address.py +298 -0
  131. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_counterparty_aliases_inner.py +264 -0
  132. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_counterparty_name.py +276 -0
  133. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_customer.py +2 -2
  134. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_customer_address.py +302 -0
  135. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_customer_aliases_inner.py +264 -0
  136. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_customer_name.py +276 -0
  137. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_deposit_address.py +281 -0
  138. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_deposit_bank_account.py +307 -0
  139. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_execution.py +274 -0
  140. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_external_bank_account.py +8 -8
  141. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_external_bank_account_counterparty_address.py +292 -0
  142. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_external_bank_account_counterparty_name.py +276 -0
  143. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_external_wallet.py +327 -0
  144. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_fee.py +282 -0
  145. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_file.py +333 -0
  146. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_identification_number.py +295 -0
  147. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_identity_verification.py +6 -2
  148. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_identity_verification_address.py +2 -2
  149. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_identity_verification_aliases_inner.py +264 -0
  150. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_identity_verification_name.py +276 -0
  151. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_invoice.py +305 -0
  152. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_payment_instruction.py +281 -0
  153. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_persona_session.py +276 -0
  154. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_plan.py +317 -0
  155. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_plan_destination_account.py +278 -0
  156. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_plan_source_account.py +278 -0
  157. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_plan_travel_rule_info.py +276 -0
  158. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_quote.py +5 -6
  159. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_quote_entry.py +289 -0
  160. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_supported_payout_symbols.py +308 -0
  161. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_trade.py +306 -0
  162. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_transfer.py +5 -4
  163. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_transfer_participant.py +291 -0
  164. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/post_ultimate_beneficial_owner.py +280 -0
  165. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/post_workflow.py +2 -2
  166. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/quote.py +2 -2
  167. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_entry.py +288 -0
  168. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_entry_destination_account.py +288 -0
  169. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_entry_source_account.py +288 -0
  170. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_list.py +303 -0
  171. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_side.py +293 -0
  172. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/quote_type.py +295 -0
  173. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/stage.py +328 -0
  174. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/symbol_price.py +304 -0
  175. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/symbol_price_response.py +292 -0
  176. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/symbols.py +287 -0
  177. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/trade.py +6 -6
  178. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/trade_failure_code.py +295 -0
  179. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/trade_list.py +303 -0
  180. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/trade_side.py +291 -0
  181. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/trade_state.py +296 -0
  182. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/trade_type.py +292 -0
  183. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/transfer.py +22 -8
  184. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_account_type.py +299 -0
  185. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_destination_account.py +288 -0
  186. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_entry.py +296 -0
  187. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_entry_destination_account.py +288 -0
  188. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_failure_code.py +305 -0
  189. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_hold_details.py +272 -0
  190. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_identifiers_inner.py +274 -0
  191. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_list.py +303 -0
  192. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_participant.py +284 -0
  193. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_side.py +291 -0
  194. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_source_account.py +288 -0
  195. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_state.py +295 -0
  196. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/transfer_type.py +299 -0
  197. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/travel_rule_info_party.py +280 -0
  198. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/workflow.py +304 -0
  199. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/workflow_state.py +292 -0
  200. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/workflow_type.py +282 -0
  201. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/workflow_with_details.py +2 -2
  202. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/workflow_with_details_all_of.py +264 -0
  203. cybrid_api_bank_python-0.125.327/cybrid_api_bank/model/workflows_list.py +303 -0
  204. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model_utils.py +2 -2
  205. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/models/__init__.py +16 -1
  206. cybrid_api_bank_python-0.125.327/cybrid_api_bank/rest.py +353 -0
  207. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank_python.egg-info/PKG-INFO +1 -1
  208. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank_python.egg-info/SOURCES.txt +36 -2
  209. cybrid_api_bank_python-0.125.327/setup.py +43 -0
  210. cybrid_api_bank_python-0.125.327/test/test_account.py +36 -0
  211. cybrid_api_bank_python-0.125.327/test/test_account_association.py +36 -0
  212. cybrid_api_bank_python-0.125.327/test/test_account_list.py +38 -0
  213. cybrid_api_bank_python-0.125.327/test/test_account_state.py +36 -0
  214. cybrid_api_bank_python-0.125.327/test/test_account_type.py +36 -0
  215. cybrid_api_bank_python-0.125.327/test/test_accounts_bank_api.py +50 -0
  216. cybrid_api_bank_python-0.125.327/test/test_activity_limit.py +36 -0
  217. cybrid_api_bank_python-0.125.327/test/test_activity_side.py +36 -0
  218. cybrid_api_bank_python-0.125.327/test/test_activity_type.py +36 -0
  219. cybrid_api_bank_python-0.125.327/test/test_asset.py +36 -0
  220. cybrid_api_bank_python-0.125.327/test/test_asset_list.py +38 -0
  221. cybrid_api_bank_python-0.125.327/test/test_asset_types.py +36 -0
  222. cybrid_api_bank_python-0.125.327/test/test_assets_bank_api.py +36 -0
  223. cybrid_api_bank_python-0.125.327/test/test_bank.py +38 -0
  224. cybrid_api_bank_python-0.125.327/test/test_bank_feature.py +36 -0
  225. cybrid_api_bank_python-0.125.327/test/test_bank_list.py +38 -0
  226. cybrid_api_bank_python-0.125.327/test/test_bank_supported_payout_symbols_inner.py +36 -0
  227. cybrid_api_bank_python-0.125.327/test/test_bank_type.py +36 -0
  228. cybrid_api_bank_python-0.125.327/test/test_banks_bank_api.py +57 -0
  229. cybrid_api_bank_python-0.125.327/test/test_compliance_check.py +36 -0
  230. cybrid_api_bank_python-0.125.327/test/test_compliance_check_outcome.py +36 -0
  231. cybrid_api_bank_python-0.125.327/test/test_compliance_check_type.py +36 -0
  232. cybrid_api_bank_python-0.125.327/test/test_compliance_decision.py +36 -0
  233. cybrid_api_bank_python-0.125.327/test/test_compliance_decision_state.py +36 -0
  234. cybrid_api_bank_python-0.125.327/test/test_compliance_decision_type.py +36 -0
  235. cybrid_api_bank_python-0.125.327/test/test_counterparties_bank_api.py +50 -0
  236. cybrid_api_bank_python-0.125.327/test/test_counterparty.py +44 -0
  237. cybrid_api_bank_python-0.125.327/test/test_counterparty_address.py +36 -0
  238. cybrid_api_bank_python-0.125.327/test/test_counterparty_aliases_inner.py +36 -0
  239. cybrid_api_bank_python-0.125.327/test/test_counterparty_list.py +38 -0
  240. cybrid_api_bank_python-0.125.327/test/test_counterparty_name.py +36 -0
  241. cybrid_api_bank_python-0.125.327/test/test_counterparty_state.py +36 -0
  242. cybrid_api_bank_python-0.125.327/test/test_counterparty_type.py +36 -0
  243. cybrid_api_bank_python-0.125.327/test/test_customer.py +48 -0
  244. cybrid_api_bank_python-0.125.327/test/test_customer_address.py +36 -0
  245. cybrid_api_bank_python-0.125.327/test/test_customer_aliases_inner.py +36 -0
  246. cybrid_api_bank_python-0.125.327/test/test_customer_list.py +38 -0
  247. cybrid_api_bank_python-0.125.327/test/test_customer_name.py +36 -0
  248. cybrid_api_bank_python-0.125.327/test/test_customer_state.py +36 -0
  249. cybrid_api_bank_python-0.125.327/test/test_customer_type.py +36 -0
  250. cybrid_api_bank_python-0.125.327/test/test_customers_bank_api.py +57 -0
  251. cybrid_api_bank_python-0.125.327/test/test_deposit_address.py +36 -0
  252. cybrid_api_bank_python-0.125.327/test/test_deposit_address_format.py +36 -0
  253. cybrid_api_bank_python-0.125.327/test/test_deposit_address_list.py +38 -0
  254. cybrid_api_bank_python-0.125.327/test/test_deposit_address_state.py +36 -0
  255. cybrid_api_bank_python-0.125.327/test/test_deposit_addresses_bank_api.py +50 -0
  256. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account.py +42 -0
  257. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_account_details_inner.py +36 -0
  258. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_counterparty_address.py +36 -0
  259. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_list.py +38 -0
  260. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_routing_details_inner.py +36 -0
  261. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_routing_number_type.py +36 -0
  262. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_account_state.py +36 -0
  263. cybrid_api_bank_python-0.125.327/test/test_deposit_bank_accounts_bank_api.py +50 -0
  264. cybrid_api_bank_python-0.125.327/test/test_error_response.py +36 -0
  265. cybrid_api_bank_python-0.125.327/test/test_execution.py +44 -0
  266. cybrid_api_bank_python-0.125.327/test/test_execution_travel_rule_info.py +38 -0
  267. cybrid_api_bank_python-0.125.327/test/test_executions_bank_api.py +43 -0
  268. cybrid_api_bank_python-0.125.327/test/test_external_bank_account.py +40 -0
  269. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_balances.py +36 -0
  270. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_kind.py +36 -0
  271. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_list.py +38 -0
  272. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_pii_inner.py +42 -0
  273. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_pii_inner_addresses_inner.py +36 -0
  274. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_pii_inner_routing_details_inner.py +36 -0
  275. cybrid_api_bank_python-0.125.327/test/test_external_bank_account_state.py +36 -0
  276. cybrid_api_bank_python-0.125.327/test/test_external_bank_accounts_bank_api.py +64 -0
  277. cybrid_api_bank_python-0.125.327/test/test_external_wallet.py +36 -0
  278. cybrid_api_bank_python-0.125.327/test/test_external_wallet_environment.py +36 -0
  279. cybrid_api_bank_python-0.125.327/test/test_external_wallet_list.py +38 -0
  280. cybrid_api_bank_python-0.125.327/test/test_external_wallet_state.py +36 -0
  281. cybrid_api_bank_python-0.125.327/test/test_external_wallets_bank_api.py +57 -0
  282. cybrid_api_bank_python-0.125.327/test/test_fee_association.py +36 -0
  283. cybrid_api_bank_python-0.125.327/test/test_files_bank_api.py +50 -0
  284. cybrid_api_bank_python-0.125.327/test/test_identification_number.py +36 -0
  285. cybrid_api_bank_python-0.125.327/test/test_identity_verification.py +40 -0
  286. cybrid_api_bank_python-0.125.327/test/test_identity_verification_business_associate.py +36 -0
  287. cybrid_api_bank_python-0.125.327/test/test_identity_verification_document.py +38 -0
  288. cybrid_api_bank_python-0.125.327/test/test_identity_verification_document_file.py +36 -0
  289. cybrid_api_bank_python-0.125.327/test/test_identity_verification_list.py +38 -0
  290. cybrid_api_bank_python-0.125.327/test/test_identity_verification_method.py +36 -0
  291. cybrid_api_bank_python-0.125.327/test/test_identity_verification_options.py +36 -0
  292. cybrid_api_bank_python-0.125.327/test/test_identity_verification_outcome.py +36 -0
  293. cybrid_api_bank_python-0.125.327/test/test_identity_verification_persona_state.py +36 -0
  294. cybrid_api_bank_python-0.125.327/test/test_identity_verification_state.py +36 -0
  295. cybrid_api_bank_python-0.125.327/test/test_identity_verification_type.py +36 -0
  296. cybrid_api_bank_python-0.125.327/test/test_identity_verification_with_details.py +48 -0
  297. cybrid_api_bank_python-0.125.327/test/test_identity_verification_with_details_pii.py +44 -0
  298. cybrid_api_bank_python-0.125.327/test/test_identity_verification_with_details_pii_address.py +36 -0
  299. cybrid_api_bank_python-0.125.327/test/test_identity_verification_with_details_pii_aliases_inner.py +36 -0
  300. cybrid_api_bank_python-0.125.327/test/test_identity_verification_with_details_pii_name.py +36 -0
  301. cybrid_api_bank_python-0.125.327/test/test_identity_verifications_bank_api.py +50 -0
  302. cybrid_api_bank_python-0.125.327/test/test_invoice.py +36 -0
  303. cybrid_api_bank_python-0.125.327/test/test_invoice_list.py +38 -0
  304. cybrid_api_bank_python-0.125.327/test/test_invoices_bank_api.py +57 -0
  305. cybrid_api_bank_python-0.125.327/test/test_list_request_page.py +36 -0
  306. cybrid_api_bank_python-0.125.327/test/test_list_request_per_page.py +36 -0
  307. cybrid_api_bank_python-0.125.327/test/test_patch_bank.py +38 -0
  308. cybrid_api_bank_python-0.125.327/test/test_patch_customer.py +36 -0
  309. cybrid_api_bank_python-0.125.327/test/test_patch_external_bank_account.py +36 -0
  310. cybrid_api_bank_python-0.125.327/test/test_patch_transfer.py +38 -0
  311. cybrid_api_bank_python-0.125.327/test/test_patch_transfer_participant.py +36 -0
  312. cybrid_api_bank_python-0.125.327/test/test_payment_instruction.py +36 -0
  313. cybrid_api_bank_python-0.125.327/test/test_payment_instruction_list.py +38 -0
  314. cybrid_api_bank_python-0.125.327/test/test_payment_instructions_bank_api.py +50 -0
  315. cybrid_api_bank_python-0.125.327/test/test_persona_session.py +36 -0
  316. cybrid_api_bank_python-0.125.327/test/test_persona_sessions_bank_api.py +36 -0
  317. cybrid_api_bank_python-0.125.327/test/test_plan.py +44 -0
  318. cybrid_api_bank_python-0.125.327/test/test_plan_travel_rule_info.py +38 -0
  319. cybrid_api_bank_python-0.125.327/test/test_plans_bank_api.py +43 -0
  320. cybrid_api_bank_python-0.125.327/test/test_platform_file.py +36 -0
  321. cybrid_api_bank_python-0.125.327/test/test_platform_file_list.py +38 -0
  322. cybrid_api_bank_python-0.125.327/test/test_post_account.py +36 -0
  323. cybrid_api_bank_python-0.125.327/test/test_post_bank.py +38 -0
  324. cybrid_api_bank_python-0.125.327/test/test_post_bank_account_details.py +36 -0
  325. cybrid_api_bank_python-0.125.327/test/test_post_counterparty.py +44 -0
  326. cybrid_api_bank_python-0.125.327/test/test_post_counterparty_address.py +36 -0
  327. cybrid_api_bank_python-0.125.327/test/test_post_counterparty_aliases_inner.py +36 -0
  328. cybrid_api_bank_python-0.125.327/test/test_post_counterparty_name.py +36 -0
  329. cybrid_api_bank_python-0.125.327/test/test_post_customer.py +44 -0
  330. cybrid_api_bank_python-0.125.327/test/test_post_customer_address.py +36 -0
  331. cybrid_api_bank_python-0.125.327/test/test_post_customer_aliases_inner.py +36 -0
  332. cybrid_api_bank_python-0.125.327/test/test_post_customer_name.py +36 -0
  333. cybrid_api_bank_python-0.125.327/test/test_post_deposit_address.py +36 -0
  334. cybrid_api_bank_python-0.125.327/test/test_post_deposit_bank_account.py +36 -0
  335. cybrid_api_bank_python-0.125.327/test/test_post_execution.py +36 -0
  336. cybrid_api_bank_python-0.125.327/test/test_post_external_bank_account.py +42 -0
  337. cybrid_api_bank_python-0.125.327/test/test_post_external_bank_account_counterparty_address.py +36 -0
  338. cybrid_api_bank_python-0.125.327/test/test_post_external_bank_account_counterparty_name.py +36 -0
  339. cybrid_api_bank_python-0.125.327/test/test_post_external_wallet.py +36 -0
  340. cybrid_api_bank_python-0.125.327/test/test_post_fee.py +36 -0
  341. cybrid_api_bank_python-0.125.327/test/test_post_file.py +36 -0
  342. cybrid_api_bank_python-0.125.327/test/test_post_identification_number.py +36 -0
  343. cybrid_api_bank_python-0.125.327/test/test_post_identity_verification.py +46 -0
  344. cybrid_api_bank_python-0.125.327/test/test_post_identity_verification_address.py +36 -0
  345. cybrid_api_bank_python-0.125.327/test/test_post_identity_verification_aliases_inner.py +36 -0
  346. cybrid_api_bank_python-0.125.327/test/test_post_identity_verification_name.py +36 -0
  347. cybrid_api_bank_python-0.125.327/test/test_post_invoice.py +36 -0
  348. cybrid_api_bank_python-0.125.327/test/test_post_payment_instruction.py +36 -0
  349. cybrid_api_bank_python-0.125.327/test/test_post_persona_session.py +36 -0
  350. cybrid_api_bank_python-0.125.327/test/test_post_plan.py +42 -0
  351. cybrid_api_bank_python-0.125.327/test/test_post_plan_destination_account.py +36 -0
  352. cybrid_api_bank_python-0.125.327/test/test_post_plan_source_account.py +36 -0
  353. cybrid_api_bank_python-0.125.327/test/test_post_plan_travel_rule_info.py +36 -0
  354. cybrid_api_bank_python-0.125.327/test/test_post_quote.py +40 -0
  355. cybrid_api_bank_python-0.125.327/test/test_post_quote_entry.py +36 -0
  356. cybrid_api_bank_python-0.125.327/test/test_post_supported_payout_symbols.py +36 -0
  357. cybrid_api_bank_python-0.125.327/test/test_post_trade.py +36 -0
  358. cybrid_api_bank_python-0.125.327/test/test_post_transfer.py +38 -0
  359. cybrid_api_bank_python-0.125.327/test/test_post_transfer_participant.py +36 -0
  360. cybrid_api_bank_python-0.125.327/test/test_post_ultimate_beneficial_owner.py +36 -0
  361. cybrid_api_bank_python-0.125.327/test/test_post_workflow.py +36 -0
  362. cybrid_api_bank_python-0.125.327/test/test_prices_bank_api.py +36 -0
  363. cybrid_api_bank_python-0.125.327/test/test_quote.py +38 -0
  364. cybrid_api_bank_python-0.125.327/test/test_quote_entry.py +40 -0
  365. cybrid_api_bank_python-0.125.327/test/test_quote_entry_destination_account.py +36 -0
  366. cybrid_api_bank_python-0.125.327/test/test_quote_entry_source_account.py +36 -0
  367. cybrid_api_bank_python-0.125.327/test/test_quote_list.py +38 -0
  368. cybrid_api_bank_python-0.125.327/test/test_quote_side.py +36 -0
  369. cybrid_api_bank_python-0.125.327/test/test_quote_type.py +36 -0
  370. cybrid_api_bank_python-0.125.327/test/test_quotes_bank_api.py +50 -0
  371. cybrid_api_bank_python-0.125.327/test/test_stage.py +40 -0
  372. cybrid_api_bank_python-0.125.327/test/test_symbol_price.py +36 -0
  373. cybrid_api_bank_python-0.125.327/test/test_symbol_price_response.py +38 -0
  374. cybrid_api_bank_python-0.125.327/test/test_symbols.py +36 -0
  375. cybrid_api_bank_python-0.125.327/test/test_symbols_bank_api.py +36 -0
  376. cybrid_api_bank_python-0.125.327/test/test_trade.py +36 -0
  377. cybrid_api_bank_python-0.125.327/test/test_trade_failure_code.py +36 -0
  378. cybrid_api_bank_python-0.125.327/test/test_trade_list.py +38 -0
  379. cybrid_api_bank_python-0.125.327/test/test_trade_side.py +36 -0
  380. cybrid_api_bank_python-0.125.327/test/test_trade_state.py +36 -0
  381. cybrid_api_bank_python-0.125.327/test/test_trade_type.py +36 -0
  382. cybrid_api_bank_python-0.125.327/test/test_trades_bank_api.py +50 -0
  383. cybrid_api_bank_python-0.125.327/test/test_transfer.py +48 -0
  384. cybrid_api_bank_python-0.125.327/test/test_transfer_account_type.py +36 -0
  385. cybrid_api_bank_python-0.125.327/test/test_transfer_destination_account.py +36 -0
  386. cybrid_api_bank_python-0.125.327/test/test_transfer_entry.py +40 -0
  387. cybrid_api_bank_python-0.125.327/test/test_transfer_entry_destination_account.py +36 -0
  388. cybrid_api_bank_python-0.125.327/test/test_transfer_failure_code.py +36 -0
  389. cybrid_api_bank_python-0.125.327/test/test_transfer_hold_details.py +36 -0
  390. cybrid_api_bank_python-0.125.327/test/test_transfer_identifiers_inner.py +36 -0
  391. cybrid_api_bank_python-0.125.327/test/test_transfer_list.py +38 -0
  392. cybrid_api_bank_python-0.125.327/test/test_transfer_participant.py +36 -0
  393. cybrid_api_bank_python-0.125.327/test/test_transfer_side.py +36 -0
  394. cybrid_api_bank_python-0.125.327/test/test_transfer_source_account.py +36 -0
  395. cybrid_api_bank_python-0.125.327/test/test_transfer_state.py +36 -0
  396. cybrid_api_bank_python-0.125.327/test/test_transfer_type.py +36 -0
  397. cybrid_api_bank_python-0.125.327/test/test_transfers_bank_api.py +57 -0
  398. cybrid_api_bank_python-0.125.327/test/test_travel_rule_info_party.py +36 -0
  399. cybrid_api_bank_python-0.125.327/test/test_workflow.py +36 -0
  400. cybrid_api_bank_python-0.125.327/test/test_workflow_state.py +36 -0
  401. cybrid_api_bank_python-0.125.327/test/test_workflow_type.py +36 -0
  402. cybrid_api_bank_python-0.125.327/test/test_workflow_with_details.py +40 -0
  403. cybrid_api_bank_python-0.125.327/test/test_workflow_with_details_all_of.py +36 -0
  404. cybrid_api_bank_python-0.125.327/test/test_workflows_bank_api.py +50 -0
  405. cybrid_api_bank_python-0.125.327/test/test_workflows_list.py +38 -0
  406. cybrid_api_bank_python-0.124.23/cybrid_api_bank/__init__.py +0 -28
  407. cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/assets_bank_api.py +0 -188
  408. cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/persona_sessions_bank_api.py +0 -177
  409. cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/prices_bank_api.py +0 -205
  410. cybrid_api_bank_python-0.124.23/cybrid_api_bank/api/symbols_bank_api.py +0 -163
  411. cybrid_api_bank_python-0.124.23/cybrid_api_bank/exceptions.py +0 -159
  412. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_list.py +0 -303
  413. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_state.py +0 -291
  414. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/account_type.py +0 -296
  415. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_limit.py +0 -288
  416. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_side.py +0 -291
  417. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/activity_type.py +0 -293
  418. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset.py +0 -309
  419. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset_list.py +0 -303
  420. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/asset_types.py +0 -291
  421. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_feature.py +0 -296
  422. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_list.py +0 -303
  423. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_supported_payout_symbols_inner.py +0 -276
  424. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/bank_type.py +0 -291
  425. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check.py +0 -280
  426. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check_outcome.py +0 -292
  427. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_check_type.py +0 -302
  428. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision.py +0 -280
  429. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision_state.py +0 -293
  430. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/compliance_decision_type.py +0 -302
  431. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_address.py +0 -284
  432. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_aliases_inner.py +0 -276
  433. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_list.py +0 -303
  434. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_name.py +0 -276
  435. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_state.py +0 -293
  436. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/counterparty_type.py +0 -291
  437. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_address.py +0 -284
  438. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_aliases_inner.py +0 -276
  439. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_list.py +0 -303
  440. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_name.py +0 -276
  441. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_state.py +0 -294
  442. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/customer_type.py +0 -291
  443. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address.py +0 -324
  444. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_format.py +0 -291
  445. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_list.py +0 -303
  446. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_address_state.py +0 -291
  447. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_account_details_inner.py +0 -270
  448. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_counterparty_address.py +0 -298
  449. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_list.py +0 -303
  450. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_routing_details_inner.py +0 -276
  451. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_routing_number_type.py +0 -292
  452. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/deposit_bank_account_state.py +0 -291
  453. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/error_response.py +0 -282
  454. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_balances.py +0 -274
  455. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_kind.py +0 -292
  456. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_list.py +0 -303
  457. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner.py +0 -294
  458. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner_addresses_inner.py +0 -284
  459. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_pii_inner_routing_details_inner.py +0 -276
  460. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_bank_account_state.py +0 -296
  461. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_environment.py +0 -291
  462. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_list.py +0 -303
  463. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/external_wallet_state.py +0 -295
  464. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identification_number.py +0 -282
  465. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_business_associate.py +0 -288
  466. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_document.py +0 -290
  467. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_document_file.py +0 -280
  468. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_list.py +0 -303
  469. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_method.py +0 -300
  470. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_outcome.py +0 -291
  471. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_persona_state.py +0 -296
  472. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_state.py +0 -295
  473. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_type.py +0 -292
  474. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_address.py +0 -298
  475. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_aliases_inner.py +0 -264
  476. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/identity_verification_with_details_pii_name.py +0 -276
  477. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/invoice_list.py +0 -303
  478. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/list_request_page.py +0 -290
  479. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/list_request_per_page.py +0 -291
  480. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_bank.py +0 -295
  481. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_customer.py +0 -268
  482. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_external_bank_account.py +0 -274
  483. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_transfer.py +0 -282
  484. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/patch_transfer_participant.py +0 -291
  485. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/payment_instruction_list.py +0 -303
  486. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/persona_session.py +0 -282
  487. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/platform_file_list.py +0 -303
  488. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_account.py +0 -311
  489. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty.py +0 -321
  490. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_address.py +0 -302
  491. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_aliases_inner.py +0 -264
  492. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_counterparty_name.py +0 -276
  493. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_address.py +0 -302
  494. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_aliases_inner.py +0 -264
  495. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_customer_name.py +0 -276
  496. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_deposit_address.py +0 -281
  497. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_deposit_bank_account.py +0 -307
  498. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_address.py +0 -292
  499. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_bank_account.py +0 -277
  500. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_bank_account_counterparty_name.py +0 -276
  501. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_external_wallet.py +0 -316
  502. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_fee.py +0 -282
  503. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_file.py +0 -332
  504. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identification_number.py +0 -294
  505. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identity_verification_aliases_inner.py +0 -264
  506. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_identity_verification_name.py +0 -276
  507. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_invoice.py +0 -305
  508. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_payment_instruction.py +0 -281
  509. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_persona_session.py +0 -276
  510. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_quote_entry.py +0 -289
  511. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_supported_payout_symbols.py +0 -308
  512. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_trade.py +0 -307
  513. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_transfer_participant.py +0 -291
  514. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/post_ultimate_beneficial_owner.py +0 -280
  515. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry.py +0 -288
  516. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry_destination_account.py +0 -288
  517. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_entry_source_account.py +0 -288
  518. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_list.py +0 -303
  519. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_side.py +0 -293
  520. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/quote_type.py +0 -295
  521. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbol_price.py +0 -304
  522. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbol_price_response.py +0 -292
  523. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/symbols.py +0 -287
  524. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_failure_code.py +0 -294
  525. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_list.py +0 -303
  526. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_side.py +0 -291
  527. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_state.py +0 -295
  528. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/trade_type.py +0 -292
  529. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_account_type.py +0 -299
  530. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_destination_account.py +0 -288
  531. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_entry.py +0 -296
  532. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_entry_destination_account.py +0 -288
  533. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_failure_code.py +0 -304
  534. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_hold_details.py +0 -272
  535. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_list.py +0 -303
  536. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_participant.py +0 -284
  537. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_side.py +0 -291
  538. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_source_account.py +0 -288
  539. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_state.py +0 -295
  540. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/transfer_type.py +0 -299
  541. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow.py +0 -304
  542. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_state.py +0 -292
  543. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_type.py +0 -282
  544. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflow_with_details_all_of.py +0 -264
  545. cybrid_api_bank_python-0.124.23/cybrid_api_bank/model/workflows_list.py +0 -303
  546. cybrid_api_bank_python-0.124.23/cybrid_api_bank/rest.py +0 -353
  547. cybrid_api_bank_python-0.124.23/setup.py +0 -43
  548. cybrid_api_bank_python-0.124.23/test/test_account.py +0 -36
  549. cybrid_api_bank_python-0.124.23/test/test_account_list.py +0 -38
  550. cybrid_api_bank_python-0.124.23/test/test_account_state.py +0 -36
  551. cybrid_api_bank_python-0.124.23/test/test_account_type.py +0 -36
  552. cybrid_api_bank_python-0.124.23/test/test_accounts_bank_api.py +0 -50
  553. cybrid_api_bank_python-0.124.23/test/test_activity_limit.py +0 -36
  554. cybrid_api_bank_python-0.124.23/test/test_activity_side.py +0 -36
  555. cybrid_api_bank_python-0.124.23/test/test_activity_type.py +0 -36
  556. cybrid_api_bank_python-0.124.23/test/test_asset.py +0 -36
  557. cybrid_api_bank_python-0.124.23/test/test_asset_list.py +0 -38
  558. cybrid_api_bank_python-0.124.23/test/test_asset_types.py +0 -36
  559. cybrid_api_bank_python-0.124.23/test/test_assets_bank_api.py +0 -36
  560. cybrid_api_bank_python-0.124.23/test/test_bank.py +0 -38
  561. cybrid_api_bank_python-0.124.23/test/test_bank_feature.py +0 -36
  562. cybrid_api_bank_python-0.124.23/test/test_bank_list.py +0 -38
  563. cybrid_api_bank_python-0.124.23/test/test_bank_supported_payout_symbols_inner.py +0 -36
  564. cybrid_api_bank_python-0.124.23/test/test_bank_type.py +0 -36
  565. cybrid_api_bank_python-0.124.23/test/test_banks_bank_api.py +0 -57
  566. cybrid_api_bank_python-0.124.23/test/test_compliance_check.py +0 -36
  567. cybrid_api_bank_python-0.124.23/test/test_compliance_check_outcome.py +0 -36
  568. cybrid_api_bank_python-0.124.23/test/test_compliance_check_type.py +0 -36
  569. cybrid_api_bank_python-0.124.23/test/test_compliance_decision.py +0 -36
  570. cybrid_api_bank_python-0.124.23/test/test_compliance_decision_state.py +0 -36
  571. cybrid_api_bank_python-0.124.23/test/test_compliance_decision_type.py +0 -36
  572. cybrid_api_bank_python-0.124.23/test/test_counterparties_bank_api.py +0 -50
  573. cybrid_api_bank_python-0.124.23/test/test_counterparty.py +0 -44
  574. cybrid_api_bank_python-0.124.23/test/test_counterparty_address.py +0 -36
  575. cybrid_api_bank_python-0.124.23/test/test_counterparty_aliases_inner.py +0 -36
  576. cybrid_api_bank_python-0.124.23/test/test_counterparty_list.py +0 -38
  577. cybrid_api_bank_python-0.124.23/test/test_counterparty_name.py +0 -36
  578. cybrid_api_bank_python-0.124.23/test/test_counterparty_state.py +0 -36
  579. cybrid_api_bank_python-0.124.23/test/test_counterparty_type.py +0 -36
  580. cybrid_api_bank_python-0.124.23/test/test_customer.py +0 -48
  581. cybrid_api_bank_python-0.124.23/test/test_customer_address.py +0 -36
  582. cybrid_api_bank_python-0.124.23/test/test_customer_aliases_inner.py +0 -36
  583. cybrid_api_bank_python-0.124.23/test/test_customer_list.py +0 -38
  584. cybrid_api_bank_python-0.124.23/test/test_customer_name.py +0 -36
  585. cybrid_api_bank_python-0.124.23/test/test_customer_state.py +0 -36
  586. cybrid_api_bank_python-0.124.23/test/test_customer_type.py +0 -36
  587. cybrid_api_bank_python-0.124.23/test/test_customers_bank_api.py +0 -57
  588. cybrid_api_bank_python-0.124.23/test/test_deposit_address.py +0 -36
  589. cybrid_api_bank_python-0.124.23/test/test_deposit_address_format.py +0 -36
  590. cybrid_api_bank_python-0.124.23/test/test_deposit_address_list.py +0 -38
  591. cybrid_api_bank_python-0.124.23/test/test_deposit_address_state.py +0 -36
  592. cybrid_api_bank_python-0.124.23/test/test_deposit_addresses_bank_api.py +0 -50
  593. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account.py +0 -42
  594. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_account_details_inner.py +0 -36
  595. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_counterparty_address.py +0 -36
  596. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_list.py +0 -38
  597. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_routing_details_inner.py +0 -36
  598. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_routing_number_type.py +0 -36
  599. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_account_state.py +0 -36
  600. cybrid_api_bank_python-0.124.23/test/test_deposit_bank_accounts_bank_api.py +0 -50
  601. cybrid_api_bank_python-0.124.23/test/test_error_response.py +0 -36
  602. cybrid_api_bank_python-0.124.23/test/test_external_bank_account.py +0 -40
  603. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_balances.py +0 -36
  604. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_kind.py +0 -36
  605. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_list.py +0 -38
  606. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner.py +0 -42
  607. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner_addresses_inner.py +0 -36
  608. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_pii_inner_routing_details_inner.py +0 -36
  609. cybrid_api_bank_python-0.124.23/test/test_external_bank_account_state.py +0 -36
  610. cybrid_api_bank_python-0.124.23/test/test_external_bank_accounts_bank_api.py +0 -64
  611. cybrid_api_bank_python-0.124.23/test/test_external_wallet.py +0 -36
  612. cybrid_api_bank_python-0.124.23/test/test_external_wallet_environment.py +0 -36
  613. cybrid_api_bank_python-0.124.23/test/test_external_wallet_list.py +0 -38
  614. cybrid_api_bank_python-0.124.23/test/test_external_wallet_state.py +0 -36
  615. cybrid_api_bank_python-0.124.23/test/test_external_wallets_bank_api.py +0 -57
  616. cybrid_api_bank_python-0.124.23/test/test_files_bank_api.py +0 -50
  617. cybrid_api_bank_python-0.124.23/test/test_identification_number.py +0 -36
  618. cybrid_api_bank_python-0.124.23/test/test_identity_verification.py +0 -38
  619. cybrid_api_bank_python-0.124.23/test/test_identity_verification_business_associate.py +0 -36
  620. cybrid_api_bank_python-0.124.23/test/test_identity_verification_document.py +0 -38
  621. cybrid_api_bank_python-0.124.23/test/test_identity_verification_document_file.py +0 -36
  622. cybrid_api_bank_python-0.124.23/test/test_identity_verification_list.py +0 -38
  623. cybrid_api_bank_python-0.124.23/test/test_identity_verification_method.py +0 -36
  624. cybrid_api_bank_python-0.124.23/test/test_identity_verification_outcome.py +0 -36
  625. cybrid_api_bank_python-0.124.23/test/test_identity_verification_persona_state.py +0 -36
  626. cybrid_api_bank_python-0.124.23/test/test_identity_verification_state.py +0 -36
  627. cybrid_api_bank_python-0.124.23/test/test_identity_verification_type.py +0 -36
  628. cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details.py +0 -46
  629. cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii.py +0 -44
  630. cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_address.py +0 -36
  631. cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_aliases_inner.py +0 -36
  632. cybrid_api_bank_python-0.124.23/test/test_identity_verification_with_details_pii_name.py +0 -36
  633. cybrid_api_bank_python-0.124.23/test/test_identity_verifications_bank_api.py +0 -50
  634. cybrid_api_bank_python-0.124.23/test/test_invoice.py +0 -36
  635. cybrid_api_bank_python-0.124.23/test/test_invoice_list.py +0 -38
  636. cybrid_api_bank_python-0.124.23/test/test_invoices_bank_api.py +0 -57
  637. cybrid_api_bank_python-0.124.23/test/test_list_request_page.py +0 -36
  638. cybrid_api_bank_python-0.124.23/test/test_list_request_per_page.py +0 -36
  639. cybrid_api_bank_python-0.124.23/test/test_patch_bank.py +0 -38
  640. cybrid_api_bank_python-0.124.23/test/test_patch_customer.py +0 -36
  641. cybrid_api_bank_python-0.124.23/test/test_patch_external_bank_account.py +0 -36
  642. cybrid_api_bank_python-0.124.23/test/test_patch_transfer.py +0 -38
  643. cybrid_api_bank_python-0.124.23/test/test_patch_transfer_participant.py +0 -36
  644. cybrid_api_bank_python-0.124.23/test/test_payment_instruction.py +0 -36
  645. cybrid_api_bank_python-0.124.23/test/test_payment_instruction_list.py +0 -38
  646. cybrid_api_bank_python-0.124.23/test/test_payment_instructions_bank_api.py +0 -50
  647. cybrid_api_bank_python-0.124.23/test/test_persona_session.py +0 -36
  648. cybrid_api_bank_python-0.124.23/test/test_persona_sessions_bank_api.py +0 -36
  649. cybrid_api_bank_python-0.124.23/test/test_platform_file.py +0 -36
  650. cybrid_api_bank_python-0.124.23/test/test_platform_file_list.py +0 -38
  651. cybrid_api_bank_python-0.124.23/test/test_post_account.py +0 -36
  652. cybrid_api_bank_python-0.124.23/test/test_post_bank.py +0 -38
  653. cybrid_api_bank_python-0.124.23/test/test_post_counterparty.py +0 -42
  654. cybrid_api_bank_python-0.124.23/test/test_post_counterparty_address.py +0 -36
  655. cybrid_api_bank_python-0.124.23/test/test_post_counterparty_aliases_inner.py +0 -36
  656. cybrid_api_bank_python-0.124.23/test/test_post_counterparty_name.py +0 -36
  657. cybrid_api_bank_python-0.124.23/test/test_post_customer.py +0 -44
  658. cybrid_api_bank_python-0.124.23/test/test_post_customer_address.py +0 -36
  659. cybrid_api_bank_python-0.124.23/test/test_post_customer_aliases_inner.py +0 -36
  660. cybrid_api_bank_python-0.124.23/test/test_post_customer_name.py +0 -36
  661. cybrid_api_bank_python-0.124.23/test/test_post_deposit_address.py +0 -36
  662. cybrid_api_bank_python-0.124.23/test/test_post_deposit_bank_account.py +0 -36
  663. cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account.py +0 -42
  664. cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_address.py +0 -36
  665. cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_bank_account.py +0 -36
  666. cybrid_api_bank_python-0.124.23/test/test_post_external_bank_account_counterparty_name.py +0 -36
  667. cybrid_api_bank_python-0.124.23/test/test_post_external_wallet.py +0 -36
  668. cybrid_api_bank_python-0.124.23/test/test_post_fee.py +0 -36
  669. cybrid_api_bank_python-0.124.23/test/test_post_file.py +0 -36
  670. cybrid_api_bank_python-0.124.23/test/test_post_identification_number.py +0 -36
  671. cybrid_api_bank_python-0.124.23/test/test_post_identity_verification.py +0 -46
  672. cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_address.py +0 -36
  673. cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_aliases_inner.py +0 -36
  674. cybrid_api_bank_python-0.124.23/test/test_post_identity_verification_name.py +0 -36
  675. cybrid_api_bank_python-0.124.23/test/test_post_invoice.py +0 -36
  676. cybrid_api_bank_python-0.124.23/test/test_post_payment_instruction.py +0 -36
  677. cybrid_api_bank_python-0.124.23/test/test_post_persona_session.py +0 -36
  678. cybrid_api_bank_python-0.124.23/test/test_post_quote.py +0 -40
  679. cybrid_api_bank_python-0.124.23/test/test_post_quote_entry.py +0 -36
  680. cybrid_api_bank_python-0.124.23/test/test_post_supported_payout_symbols.py +0 -36
  681. cybrid_api_bank_python-0.124.23/test/test_post_trade.py +0 -36
  682. cybrid_api_bank_python-0.124.23/test/test_post_transfer.py +0 -38
  683. cybrid_api_bank_python-0.124.23/test/test_post_transfer_participant.py +0 -36
  684. cybrid_api_bank_python-0.124.23/test/test_post_ultimate_beneficial_owner.py +0 -36
  685. cybrid_api_bank_python-0.124.23/test/test_post_workflow.py +0 -36
  686. cybrid_api_bank_python-0.124.23/test/test_prices_bank_api.py +0 -36
  687. cybrid_api_bank_python-0.124.23/test/test_quote.py +0 -38
  688. cybrid_api_bank_python-0.124.23/test/test_quote_entry.py +0 -40
  689. cybrid_api_bank_python-0.124.23/test/test_quote_entry_destination_account.py +0 -36
  690. cybrid_api_bank_python-0.124.23/test/test_quote_entry_source_account.py +0 -36
  691. cybrid_api_bank_python-0.124.23/test/test_quote_list.py +0 -38
  692. cybrid_api_bank_python-0.124.23/test/test_quote_side.py +0 -36
  693. cybrid_api_bank_python-0.124.23/test/test_quote_type.py +0 -36
  694. cybrid_api_bank_python-0.124.23/test/test_quotes_bank_api.py +0 -50
  695. cybrid_api_bank_python-0.124.23/test/test_symbol_price.py +0 -36
  696. cybrid_api_bank_python-0.124.23/test/test_symbol_price_response.py +0 -38
  697. cybrid_api_bank_python-0.124.23/test/test_symbols.py +0 -36
  698. cybrid_api_bank_python-0.124.23/test/test_symbols_bank_api.py +0 -36
  699. cybrid_api_bank_python-0.124.23/test/test_trade.py +0 -36
  700. cybrid_api_bank_python-0.124.23/test/test_trade_failure_code.py +0 -36
  701. cybrid_api_bank_python-0.124.23/test/test_trade_list.py +0 -38
  702. cybrid_api_bank_python-0.124.23/test/test_trade_side.py +0 -36
  703. cybrid_api_bank_python-0.124.23/test/test_trade_state.py +0 -36
  704. cybrid_api_bank_python-0.124.23/test/test_trade_type.py +0 -36
  705. cybrid_api_bank_python-0.124.23/test/test_trades_bank_api.py +0 -50
  706. cybrid_api_bank_python-0.124.23/test/test_transfer.py +0 -46
  707. cybrid_api_bank_python-0.124.23/test/test_transfer_account_type.py +0 -36
  708. cybrid_api_bank_python-0.124.23/test/test_transfer_destination_account.py +0 -36
  709. cybrid_api_bank_python-0.124.23/test/test_transfer_entry.py +0 -40
  710. cybrid_api_bank_python-0.124.23/test/test_transfer_entry_destination_account.py +0 -36
  711. cybrid_api_bank_python-0.124.23/test/test_transfer_failure_code.py +0 -36
  712. cybrid_api_bank_python-0.124.23/test/test_transfer_hold_details.py +0 -36
  713. cybrid_api_bank_python-0.124.23/test/test_transfer_list.py +0 -38
  714. cybrid_api_bank_python-0.124.23/test/test_transfer_participant.py +0 -36
  715. cybrid_api_bank_python-0.124.23/test/test_transfer_side.py +0 -36
  716. cybrid_api_bank_python-0.124.23/test/test_transfer_source_account.py +0 -36
  717. cybrid_api_bank_python-0.124.23/test/test_transfer_state.py +0 -36
  718. cybrid_api_bank_python-0.124.23/test/test_transfer_type.py +0 -36
  719. cybrid_api_bank_python-0.124.23/test/test_transfers_bank_api.py +0 -57
  720. cybrid_api_bank_python-0.124.23/test/test_workflow.py +0 -36
  721. cybrid_api_bank_python-0.124.23/test/test_workflow_state.py +0 -36
  722. cybrid_api_bank_python-0.124.23/test/test_workflow_type.py +0 -36
  723. cybrid_api_bank_python-0.124.23/test/test_workflow_with_details.py +0 -40
  724. cybrid_api_bank_python-0.124.23/test/test_workflow_with_details_all_of.py +0 -36
  725. cybrid_api_bank_python-0.124.23/test/test_workflows_bank_api.py +0 -50
  726. cybrid_api_bank_python-0.124.23/test/test_workflows_list.py +0 -38
  727. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/api/__init__.py +0 -0
  728. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank/model/__init__.py +0 -0
  729. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank_python.egg-info/dependency_links.txt +0 -0
  730. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank_python.egg-info/requires.txt +0 -0
  731. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/cybrid_api_bank_python.egg-info/top_level.txt +0 -0
  732. {cybrid_api_bank_python-0.124.23 → cybrid_api_bank_python-0.125.327}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cybrid-api-bank-python
3
- Version: 0.124.23
3
+ Version: 0.125.327
4
4
  Summary: Cybrid Bank API
5
5
  Home-page: https://github.com/Cybrid-app/cybrid-api-bank-python/
6
6
  Author: Cybrid Support
@@ -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 Introduction](https://docs.cybrid.xyz/docs/how-is-cybrid-architected)
20
- 3. [Testing with Hosted Web Demo App](https://docs.cybrid.xyz/docs/testing-with-hosted-web-demo-app)
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/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.
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.124.23
151
+ - API version: v0.125.327
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.327
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.124.23
6
+ The version of the OpenAPI document: v0.125.327
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.327
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
+