# VeloPayments::FundingAccountResponseV2 ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | Funding Account Id | [optional] | | **payor_id** | **String** | | [optional] | | **account_name** | **String** | name on the bank account | [optional] | | **account_number** | **String** | bank account number | [optional] | | **routing_number** | **String** | bank account routing number | [optional] | | **name** | **String** | name of funding account | [optional] | | **currency** | **String** | Valid ISO 4217 3 letter currency code. See the <a href=\"https://www.iso.org/iso-4217-currency-codes.html\" target=\"_blank\" a>ISO specification</a> for details. | [optional] | | **country_code** | **String** | ISO 3166-1 2 letter country code (upper case) | [optional] | | **type** | **String** | Funding account type. One of the following values: FBO, PRIVATE | [optional] | | **archived** | **Boolean** | A flag for whether the funding account has been archived. Only present in the response if true. | [optional] | ## Example ```ruby require 'velopayments' instance = VeloPayments::FundingAccountResponseV2.new( id: null, payor_id: null, account_name: Payor Corp, account_number: 7001001234, routing_number: 12345678, name: My Funding Account, currency: USD, country_code: US, type: FBO, archived: null ) ```