Class: Stripe::SubscriptionService::CreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SubscriptionService::CreateParams::PaymentSettings::PaymentMethodOptions::AcssDebit
- Defined in:
- lib/stripe/services/subscription_service.rb
Defined Under Namespace
Classes: MandateOptions
Instance Attribute Summary collapse
-
#mandate_options ⇒ Object
Additional fields for Mandate creation.
-
#verification_method ⇒ Object
Verification method for the intent.
Instance Method Summary collapse
-
#initialize(mandate_options: nil, verification_method: nil) ⇒ AcssDebit
constructor
A new instance of AcssDebit.
Methods inherited from RequestParams
Constructor Details
#initialize(mandate_options: nil, verification_method: nil) ⇒ AcssDebit
Returns a new instance of AcssDebit.
1028 1029 1030 1031 |
# File 'lib/stripe/services/subscription_service.rb', line 1028 def initialize(mandate_options: nil, verification_method: nil) @mandate_options = @verification_method = verification_method end |
Instance Attribute Details
#mandate_options ⇒ Object
Additional fields for Mandate creation
1024 1025 1026 |
# File 'lib/stripe/services/subscription_service.rb', line 1024 def @mandate_options end |
#verification_method ⇒ Object
Verification method for the intent
1026 1027 1028 |
# File 'lib/stripe/services/subscription_service.rb', line 1026 def verification_method @verification_method end |