Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::SepaDebit::MandateOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentMethodOptions::SepaDebit::MandateOptions
- Defined in:
- lib/stripe/params/payment_intent_create_params.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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(reference_prefix: nil) ⇒ MandateOptions
Returns a new instance of MandateOptions.
5046 5047 5048 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 5046 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’.
5044 5045 5046 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 5044 def reference_prefix @reference_prefix end |