Class: Stripe::SetupIntentCreateParams::PaymentMethodOptions::AcssDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentCreateParams::PaymentMethodOptions::AcssDebit
- Defined in:
- lib/stripe/params/setup_intent_create_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.
620 621 622 623 624 |
# File 'lib/stripe/params/setup_intent_create_params.rb', line 620 def initialize(currency: nil, mandate_options: nil, verification_method: nil) @currency = currency @mandate_options = @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).
614 615 616 |
# File 'lib/stripe/params/setup_intent_create_params.rb', line 614 def currency @currency end |
#mandate_options ⇒ Object
Additional fields for Mandate creation
616 617 618 |
# File 'lib/stripe/params/setup_intent_create_params.rb', line 616 def @mandate_options end |
#verification_method ⇒ Object
Bank account verification method.
618 619 620 |
# File 'lib/stripe/params/setup_intent_create_params.rb', line 618 def verification_method @verification_method end |