Use3DS2

data class Use3DS2(    val source: String,     val serverName: String,     val transactionId: String,     val serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption,     val threeDS2IntentId: String?,     val publishableKey: String?) : StripeIntent.NextActionData.SdkData

Contains all parameters needed to perform a 3DS2 authentication.

Parameters

threeDS2IntentId

The id of the PI/SI used to authenticate using 3DS2. When non-null, indicates that a different PI/SI is used for authentication. That is the case for payments using Link, for example, which use a global merchant for authentication since the payment method is added to the consumer's global (not merchant-specific) account.

publishableKey

The publishable key that should be used to make 3DS2-related API calls. It will only be non-null when the 3DS2 calls should be made with a key different than the original merchant's key.

Constructors

Link copied to clipboard
fun Use3DS2(    source: String,     serverName: String,     transactionId: String,     serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption,     threeDS2IntentId: String?,     publishableKey: String?)

Types

Link copied to clipboard
data class DirectoryServerEncryption(    val directoryServerId: String,     val dsCertificateData: String,     val rootCertsData: List<String>,     val keyId: String?) : Parcelable

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
val publishableKey: String?
Link copied to clipboard
val serverName: String
Link copied to clipboard
val source: String
Link copied to clipboard
val threeDS2IntentId: String?
Link copied to clipboard
val transactionId: String