PaymentFlowResult

sealed class PaymentFlowResult

Represents the result of a PaymentController operation.

This class is annotated with @Parcelize but uses custom parceling logic due to issues with parceling an Exception subclass. See Parcel#writeException() for more details.

Types

Link copied to clipboard
data class Unvalidated(    val clientSecret: String? = null,     val flowOutcome: Int = StripeIntentResult.Outcome.UNKNOWN,     val exception: StripeException? = null,     canCancelSource: Boolean = false,     sourceId: String? = null,     source: Source? = null,     stripeAccountId: String? = null) : Parcelable