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.



2534
2535
2536
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2534

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

Instance Attribute Details

#ibanObject

IBAN of the bank account.



2532
2533
2534
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2532

def iban
  @iban
end