Class: Stripe::PaymentIntentConfirmParams::PaymentMethodData::SepaDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodData::SepaDebit
- Defined in:
- lib/stripe/params/payment_intent_confirm_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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(iban: nil) ⇒ SepaDebit
Returns a new instance of SepaDebit.
2219 2220 2221 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2219 def initialize(iban: nil) @iban = iban end |
Instance Attribute Details
#iban ⇒ Object
IBAN of the bank account.
2217 2218 2219 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2217 def iban @iban end |