PaymentIntentResult

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

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)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
open override val failureMessage: String? = null
Link copied to clipboard
open override val intent: PaymentIntent
Link copied to clipboard
val outcome: Int