Class: Stripe::PaymentIntentUpdateParams::PaymentMethodData::SepaDebit

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(iban: nil) ⇒ SepaDebit

Returns a new instance of SepaDebit.



2211
2212
2213
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2211

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

Instance Attribute Details

#ibanObject

IBAN of the bank account.



2209
2210
2211
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2209

def iban
  @iban
end