Class: GustoEmbedded::Shared::PaymentMethodBankAccount
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::PaymentMethodBankAccount
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/payment_method_bank_account.rb
Overview
Representation of a bank account item
Instance Method Summary collapse
-
#initialize(uuid: nil, hidden_account_number: nil, name: nil, priority: nil, split_amount: nil) ⇒ PaymentMethodBankAccount
constructor
A new instance of PaymentMethodBankAccount.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(uuid: nil, hidden_account_number: nil, name: nil, priority: nil, split_amount: nil) ⇒ PaymentMethodBankAccount
Returns a new instance of PaymentMethodBankAccount.
27 28 29 30 31 32 33 |
# File 'lib/gusto_embedded/models/shared/payment_method_bank_account.rb', line 27 def initialize(uuid: nil, hidden_account_number: nil, name: nil, priority: nil, split_amount: nil) @uuid = uuid @hidden_account_number = hidden_account_number @name = name @priority = priority @split_amount = split_amount end |