Class: Stripe::Terminal::Reader::ProcessPaymentIntentParams::ProcessConfig

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/terminal/reader.rb

Defined Under Namespace

Classes: Tipping

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(allow_redisplay: nil, enable_customer_cancellation: nil, return_url: nil, skip_tipping: nil, tipping: nil) ⇒ ProcessConfig

Returns a new instance of ProcessConfig.



529
530
531
532
533
534
535
536
537
538
539
540
541
# File 'lib/stripe/resources/terminal/reader.rb', line 529

def initialize(
  allow_redisplay: nil,
  enable_customer_cancellation: nil,
  return_url: nil,
  skip_tipping: nil,
  tipping: nil
)
  @allow_redisplay = allow_redisplay
  @enable_customer_cancellation = enable_customer_cancellation
  @return_url = return_url
  @skip_tipping = skip_tipping
  @tipping = tipping
end

Instance Attribute Details

#allow_redisplayObject

This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow.



519
520
521
# File 'lib/stripe/resources/terminal/reader.rb', line 519

def allow_redisplay
  @allow_redisplay
end

#enable_customer_cancellationObject

Enables cancel button on transaction screens.



521
522
523
# File 'lib/stripe/resources/terminal/reader.rb', line 521

def enable_customer_cancellation
  @enable_customer_cancellation
end

#return_urlObject

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.



523
524
525
# File 'lib/stripe/resources/terminal/reader.rb', line 523

def return_url
  @return_url
end

#skip_tippingObject

Override showing a tipping selection screen on this transaction.



525
526
527
# File 'lib/stripe/resources/terminal/reader.rb', line 525

def skip_tipping
  @skip_tipping
end

#tippingObject

Tipping configuration for this transaction.



527
528
529
# File 'lib/stripe/resources/terminal/reader.rb', line 527

def tipping
  @tipping
end