Class: Stripe::SetupIntentUpdateParams::PaymentMethodOptions::AcssDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentUpdateParams::PaymentMethodOptions::AcssDebit
- Defined in:
- lib/stripe/params/setup_intent_update_params.rb
Defined Under Namespace
Classes: MandateOptions
Instance Attribute Summary collapse
-
#currency ⇒ Object
Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase.
-
#mandate_options ⇒ Object
Additional fields for Mandate creation.
-
#verification_method ⇒ Object
Bank account verification method.
Instance Method Summary collapse
-
#initialize(currency: nil, mandate_options: nil, verification_method: nil) ⇒ AcssDebit
constructor
A new instance of AcssDebit.
Methods inherited from RequestParams
Constructor Details
#initialize(currency: nil, mandate_options: nil, verification_method: nil) ⇒ AcssDebit
Returns a new instance of AcssDebit.
567 568 569 570 571 |
# File 'lib/stripe/params/setup_intent_update_params.rb', line 567 def initialize(currency: nil, mandate_options: nil, verification_method: nil) @currency = currency = @verification_method = verification_method end |
Instance Attribute Details
#currency ⇒ Object
Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](stripe.com/docs/currencies).
561 562 563 |
# File 'lib/stripe/params/setup_intent_update_params.rb', line 561 def currency @currency end |
#mandate_options ⇒ Object
Additional fields for Mandate creation
563 564 565 |
# File 'lib/stripe/params/setup_intent_update_params.rb', line 563 def end |
#verification_method ⇒ Object
Bank account verification method.
565 566 567 |
# File 'lib/stripe/params/setup_intent_update_params.rb', line 565 def verification_method @verification_method end |