Class: Stripe::SetupIntentService::UpdateParams::PaymentMethodOptions::SepaDebit::MandateOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentService::UpdateParams::PaymentMethodOptions::SepaDebit::MandateOptions
- Defined in:
- lib/stripe/services/setup_intent_service.rb
Instance Attribute Summary collapse
-
#reference_prefix ⇒ Object
Prefix used to generate the Mandate reference.
Instance Method Summary collapse
-
#initialize(reference_prefix: nil) ⇒ MandateOptions
constructor
A new instance of MandateOptions.
Methods inherited from RequestParams
Constructor Details
#initialize(reference_prefix: nil) ⇒ MandateOptions
Returns a new instance of MandateOptions.
1969 1970 1971 |
# File 'lib/stripe/services/setup_intent_service.rb', line 1969 def initialize(reference_prefix: nil) @reference_prefix = reference_prefix end |
Instance Attribute Details
#reference_prefix ⇒ Object
Prefix used to generate the Mandate reference. Must be at most 12 characters long. Must consist of only uppercase letters, numbers, spaces, or the following special characters: ‘/’, ‘_’, ‘-’, ‘&’, ‘.’. Cannot begin with ‘STRIPE’.
1967 1968 1969 |
# File 'lib/stripe/services/setup_intent_service.rb', line 1967 def reference_prefix @reference_prefix end |