Class: Increase::Models::ExternalAccountCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::ExternalAccountCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/external_account_create_params.rb
Overview
Defined Under Namespace
Modules: AccountHolder, Funding
Instance Attribute Summary collapse
-
#account_holder ⇒ Symbol, ...
The type of entity that owns the External Account.
-
#account_number ⇒ String
The account number for the destination account.
-
#description ⇒ String
The name you choose for the Account.
-
#funding ⇒ Symbol, ...
The type of the destination account.
-
#routing_number ⇒ String
The American Bankers’ Association (ABA) Routing Transit Number (RTN) for the destination account.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(account_number: , description: , routing_number: , account_holder: nil, funding: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see ExternalAccountCreateParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(account_number: , description: , routing_number: , account_holder: nil, funding: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::ExternalAccountCreateParams for more details.
|
|
# File 'lib/increase/models/external_account_create_params.rb', line 41
|
Instance Attribute Details
#account_holder ⇒ Symbol, ...
The type of entity that owns the External Account.
33 |
# File 'lib/increase/models/external_account_create_params.rb', line 33 optional :account_holder, enum: -> { Increase::ExternalAccountCreateParams::AccountHolder } |
#account_number ⇒ String
The account number for the destination account.
14 |
# File 'lib/increase/models/external_account_create_params.rb', line 14 required :account_number, String |
#description ⇒ String
The name you choose for the Account.
20 |
# File 'lib/increase/models/external_account_create_params.rb', line 20 required :description, String |
#funding ⇒ Symbol, ...
The type of the destination account. Defaults to ‘checking`.
39 |
# File 'lib/increase/models/external_account_create_params.rb', line 39 optional :funding, enum: -> { Increase::ExternalAccountCreateParams::Funding } |
#routing_number ⇒ String
The American Bankers’ Association (ABA) Routing Transit Number (RTN) for the destination account.
27 |
# File 'lib/increase/models/external_account_create_params.rb', line 27 required :routing_number, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/external_account_create_params.rb', line 70
|