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

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

Defined Under Namespace

Classes: Local, Wire

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(local: nil, wire: nil) ⇒ BankAccounts

Returns a new instance of BankAccounts.



1154
1155
1156
1157
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1154

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.



1150
1151
1152
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1150

def local
  @local
end

#wireObject

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



1152
1153
1154
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1152

def wire
  @wire
end