PaymentIntentResult
data class PaymentIntentResult @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP] ) constructor(intent: PaymentIntent, outcomeFromFlow: Int, failureMessage: String?) : StripeIntentResult<PaymentIntent>
Content copied to clipboard
A model representing the result of a PaymentIntent confirmation via Stripe.confirmPayment or handling of next actions via Stripe.handleNextActionForPayment.
Constructors
Link copied to clipboard
fun PaymentIntentResult(intent: PaymentIntent, outcomeFromFlow: Int = 0, failureMessage: String? = null)
Content copied to clipboard