Class: Stripe::PaymentIntentCreateParams::PaymentMethodData::SepaDebit

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(iban: nil) ⇒ SepaDebit

Returns a new instance of SepaDebit.



2249
2250
2251
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2249

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

Instance Attribute Details

#ibanObject

IBAN of the bank account.



2247
2248
2249
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2247

def iban
  @iban
end