# CybridApiBank::DepositBankAccountBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **guid** | **String** | Auto-generated unique identifier for the identity verification. | [optional] | | **bank_guid** | **String** | The address' bank identifier. | [optional] | | **customer_guid** | **String** | The address' customer identifier. | [optional] | | **account_guid** | **String** | The address' account identifier. | [optional] | | **created_at** | **Time** | ISO8601 datetime the address was created at. | [optional] | | **asset** | **String** | The asset the transfer is related to, e.g., USD. | [optional] | | **state** | **String** | The state of the address. | [optional] | | **unique_memo_id** | **String** | The unique memo identifier for the address. This is used to identify the recipient when sending funds to the account. This value MUST be included in all wire transfers to this account. | [optional] | | **counterparty_name** | **String** | The name of the account holder. | [optional] | | **counterparty_address** | [**DepositBankAccountCounterpartyAddressBankModel**](DepositBankAccountCounterpartyAddressBankModel.md) | | [optional] | | **account_details** | [**Array<DepositBankAccountAccountDetailsInnerBankModel>**](DepositBankAccountAccountDetailsInnerBankModel.md) | The account details for the bank account. | [optional] | | **routing_details** | [**Array<DepositBankAccountRoutingDetailsInnerBankModel>**](DepositBankAccountRoutingDetailsInnerBankModel.md) | The account details for the bank account. | [optional] | | **labels** | **Array<String>** | The labels associated with the address. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::DepositBankAccountBankModel.new( guid: null, bank_guid: null, customer_guid: null, account_guid: null, created_at: null, asset: null, state: null, unique_memo_id: null, counterparty_name: null, counterparty_address: null, account_details: null, routing_details: null, labels: null ) ```