Class: Stripe::PaymentIntentService::CreateParams::PaymentMethodOptions::SepaDebit::MandateOptions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/payment_intent_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(reference_prefix: nil) ⇒ MandateOptions

Returns a new instance of MandateOptions.



1773
1774
1775
# File 'lib/stripe/services/payment_intent_service.rb', line 1773

def initialize(reference_prefix: nil)
  @reference_prefix = reference_prefix
end

Instance Attribute Details

#reference_prefixObject

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’.



1771
1772
1773
# File 'lib/stripe/services/payment_intent_service.rb', line 1771

def reference_prefix
  @reference_prefix
end