Class: Stripe::Terminal::ReaderConfirmPaymentIntentParams::ConfirmConfig
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ReaderConfirmPaymentIntentParams::ConfirmConfig
- Defined in:
- lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb
Instance Attribute Summary collapse
-
#return_url ⇒ Object
The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site.
Instance Method Summary collapse
-
#initialize(return_url: nil) ⇒ ConfirmConfig
constructor
A new instance of ConfirmConfig.
Methods inherited from RequestParams
Constructor Details
#initialize(return_url: nil) ⇒ ConfirmConfig
Returns a new instance of ConfirmConfig.
11 12 13 |
# File 'lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb', line 11 def initialize(return_url: nil) @return_url = return_url end |
Instance Attribute Details
#return_url ⇒ Object
The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site. If you’d prefer to redirect to a mobile application, you can alternatively supply an application URI scheme.
9 10 11 |
# File 'lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb', line 9 def return_url @return_url end |