Class: Stripe::PaymentMethodCreateParams::Ideal

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/payment_method_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(bank: nil) ⇒ Ideal

Returns a new instance of Ideal.



197
198
199
# File 'lib/stripe/params/payment_method_create_params.rb', line 197

def initialize(bank: nil)
  @bank = bank
end

Instance Attribute Details

#bankObject

The customer’s bank. Only use this parameter for existing customers. Don’t use it for new customers.



195
196
197
# File 'lib/stripe/params/payment_method_create_params.rb', line 195

def bank
  @bank
end