Class: Stripe::PaymentIntentUpdateParams::PaymentMethodData::SepaDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::PaymentMethodData::SepaDebit
- Defined in:
- lib/stripe/params/payment_intent_update_params.rb
Instance Attribute Summary collapse
-
#iban ⇒ Object
IBAN of the bank account.
Instance Method Summary collapse
-
#initialize(iban: nil) ⇒ SepaDebit
constructor
A new instance of SepaDebit.
Methods inherited from RequestParams
Constructor Details
#initialize(iban: nil) ⇒ SepaDebit
Returns a new instance of SepaDebit.
2227 2228 2229 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2227 def initialize(iban: nil) @iban = iban end |
Instance Attribute Details
#iban ⇒ Object
IBAN of the bank account.
2225 2226 2227 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2225 def iban @iban end |