Stripe.Params.Terminal.ReaderConfirmPaymentIntentParams (tiger_stripe v0.3.0)

Copy Markdown View Source

Parameters for reader confirm payment intent.

Summary

Types

confirm_config()

@type confirm_config() :: %{
  optional(:return_url) => String.t() | nil,
  optional(String.t()) => term()
}
  • return_url - 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.

t()

@type t() :: %Stripe.Params.Terminal.ReaderConfirmPaymentIntentParams{
  confirm_config: confirm_config() | nil,
  expand: [String.t()] | nil,
  payment_intent: String.t()
}
  • confirm_config - Configuration overrides for this confirmation, such as surcharge settings and return URL.
  • expand - Specifies which fields in the response should be expanded.
  • payment_intent - The ID of the PaymentIntent to confirm. Max length: 5000.