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: Instant, Local, Wire

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

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

Returns a new instance of BankAccounts.



1165
1166
1167
1168
1169
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1165

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

Instance Attribute Details

#instantObject

Enables this Account to receive OutboundPayments to linked bank accounts over real time rails.



1159
1160
1161
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1159

def instant
  @instant
end

#localObject

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



1161
1162
1163
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1161

def local
  @local
end

#wireObject

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



1163
1164
1165
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1163

def wire
  @wire
end