Class: Stripe::V2::Core::AccountCreateParams::Configuration::Recipient::Capabilities::BankAccounts

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_params.rb

Defined Under Namespace

Classes: Local, Wire

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



1016
1017
1018
1019
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1016

def initialize(local: nil, wire: nil)
  @local = local
  @wire = wire
end

Instance Attribute Details

#localObject

Enables this Account to receive OutboundPayments to linked bank accounts over local networks.



1012
1013
1014
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1012

def local
  @local
end

#wireObject

Enables this Account to receive OutboundPayments to linked bank accounts over wire.



1014
1015
1016
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1014

def wire
  @wire
end