PaymentIntentResult
data class PaymentIntentResult @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP] ) constructor( val intent: PaymentIntent, outcomeFromFlow: Int = 0, val failureMessage: String? = null) : 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