Class: Stripe::V2::Core::AccountCreateParams::Configuration::Recipient::Capabilities::BankAccounts
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::Recipient::Capabilities::BankAccounts
- Defined in:
- lib/stripe/params/v2/core/account_create_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#local ⇒ Object
Enables this Account to receive OutboundPayments to linked bank accounts over local networks.
-
#wire ⇒ Object
Enables this Account to receive OutboundPayments to linked bank accounts over wire.
Instance Method Summary collapse
-
#initialize(local: nil, wire: nil) ⇒ BankAccounts
constructor
A new instance of BankAccounts.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(local: nil, wire: nil) ⇒ BankAccounts
Returns a new instance of BankAccounts.
1329 1330 1331 1332 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1329 def initialize(local: nil, wire: nil) @local = local @wire = wire end |
Instance Attribute Details
#local ⇒ Object
Enables this Account to receive OutboundPayments to linked bank accounts over local networks.
1325 1326 1327 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1325 def local @local end |
#wire ⇒ Object
Enables this Account to receive OutboundPayments to linked bank accounts over wire.
1327 1328 1329 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1327 def wire @wire end |