Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::AcssDebit::MandateOptions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(custom_mandate_url: nil, interval_description: nil, payment_schedule: nil, transaction_type: nil) ⇒ MandateOptions

Returns a new instance of MandateOptions.



2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2635

def initialize(
  custom_mandate_url: nil,
  interval_description: nil,
  payment_schedule: nil,
  transaction_type: nil
)
  @custom_mandate_url = custom_mandate_url
  @interval_description = interval_description
  @payment_schedule = payment_schedule
  @transaction_type = transaction_type
end

Instance Attribute Details

#custom_mandate_urlObject

A URL for custom mandate text to render during confirmation step. The URL will be rendered with additional GET parameters ‘payment_intent` and `payment_intent_client_secret` when confirming a Payment Intent, or `setup_intent` and `setup_intent_client_secret` when confirming a Setup Intent.



2627
2628
2629
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2627

def custom_mandate_url
  @custom_mandate_url
end

#interval_descriptionObject

Description of the mandate interval. Only required if ‘payment_schedule’ parameter is ‘interval’ or ‘combined’.



2629
2630
2631
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2629

def interval_description
  @interval_description
end

#payment_scheduleObject

Payment schedule for the mandate.



2631
2632
2633
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2631

def payment_schedule
  @payment_schedule
end

#transaction_typeObject

Transaction type of the mandate.



2633
2634
2635
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2633

def transaction_type
  @transaction_type
end