Class: Stripe::PaymentIntentService::ConfirmParams::PaymentMethodOptions::BacsDebit::MandateOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentService::ConfirmParams::PaymentMethodOptions::BacsDebit::MandateOptions
- Defined in:
- lib/stripe/services/payment_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.
5541 5542 5543 |
# File 'lib/stripe/services/payment_intent_service.rb', line 5541 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 ‘DDIC’ or ‘STRIPE’.
5539 5540 5541 |
# File 'lib/stripe/services/payment_intent_service.rb', line 5539 def reference_prefix @reference_prefix end |