Class: Stripe::PaymentMethodCreateParams::SepaDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodCreateParams::SepaDebit
- Defined in:
- lib/stripe/params/payment_method_create_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.
310 311 312 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 310 def initialize(iban: nil) @iban = iban end |
Instance Attribute Details
#iban ⇒ Object
IBAN of the bank account.
308 309 310 |
# File 'lib/stripe/params/payment_method_create_params.rb', line 308 def iban @iban end |