Class: GustoEmbedded::Shared::CompanyBankAccount
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::CompanyBankAccount
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/company_bank_account.rb
Overview
The company bank account
Instance Method Summary collapse
-
#initialize(uuid: nil, account_type: nil, balance_fetched_date: nil, company_uuid: nil, hidden_account_number: nil, last_cached_balance: nil, name: nil, plaid_status: nil, routing_number: nil, verification_status: nil, verification_type: nil) ⇒ CompanyBankAccount
constructor
A new instance of CompanyBankAccount.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(uuid: nil, account_type: nil, balance_fetched_date: nil, company_uuid: nil, hidden_account_number: nil, last_cached_balance: nil, name: nil, plaid_status: nil, routing_number: nil, verification_status: nil, verification_type: nil) ⇒ CompanyBankAccount
Returns a new instance of CompanyBankAccount.
46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/gusto_embedded/models/shared/company_bank_account.rb', line 46 def initialize(uuid: nil, account_type: nil, balance_fetched_date: nil, company_uuid: nil, hidden_account_number: nil, last_cached_balance: nil, name: nil, plaid_status: nil, routing_number: nil, verification_status: nil, verification_type: nil) @uuid = uuid @account_type = account_type @balance_fetched_date = balance_fetched_date @company_uuid = company_uuid @hidden_account_number = hidden_account_number @last_cached_balance = last_cached_balance @name = name @plaid_status = plaid_status @routing_number = routing_number @verification_status = verification_status @verification_type = verification_type end |