Class: GustoEmbedded::Shared::EmployeeBankAccount
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::EmployeeBankAccount
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/employee_bank_account.rb
Overview
Example response
Instance Method Summary collapse
-
#initialize(uuid: nil, account_type: nil, employee_uuid: nil, hidden_account_number: nil, name: nil, routing_number: nil) ⇒ EmployeeBankAccount
constructor
A new instance of EmployeeBankAccount.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(uuid: nil, account_type: nil, employee_uuid: nil, hidden_account_number: nil, name: nil, routing_number: nil) ⇒ EmployeeBankAccount
Returns a new instance of EmployeeBankAccount.
29 30 31 32 33 34 35 36 |
# File 'lib/gusto_embedded/models/shared/employee_bank_account.rb', line 29 def initialize(uuid: nil, account_type: nil, employee_uuid: nil, hidden_account_number: nil, name: nil, routing_number: nil) @uuid = uuid @account_type = account_type @employee_uuid = employee_uuid @hidden_account_number = hidden_account_number @name = name @routing_number = routing_number end |