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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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

Returns a new instance of BankAccounts.



1143
1144
1145
1146
1147
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1143

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.



1137
1138
1139
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1137

def instant
  @instant
end

#localObject

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



1139
1140
1141
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1139

def local
  @local
end

#wireObject

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



1141
1142
1143
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1141

def wire
  @wire
end