KOTLIN
Copy
Ask AI
data class PrimerPaymentMethodTokenData(
val token: String,
val analyticsId: String,
val tokenType: TokenType,
val paymentInstrumentType: String,
val paymentInstrumentData: PaymentInstrumentData?,
val vaultData: VaultData?,
val threeDSecureAuthentication: AuthenticationDetails? = null,
val isVaulted: Boolean
) {
data class VaultData(
val customerId: String,
)
data class AuthenticationDetails(
val responseCode: ResponseCode,
val reasonCode: String?,
val reasonText: String?,
val protocolVersion: String?,
val challengeIssued: Boolean?,
)
}
Properties
Hide child attributes
Hide child attributes
Show Properties
Show Properties
The human readable representation of card network (e.g., Visa, Mastercard).
The name of the cardholder.
The first 6 digits of the card number.
The last 4 digits of the card number.
The last 4 digits of the account number.
The expiration month of the card, in 2-digit format.
The expiration year of the card, in 4-digit format.
A unique string identifier for the payment method. (e.g.
PAYPAL
,
GOOGLE_PAY
)Additional BIN data.
Hide Properties
Hide Properties
The card network (e.g., VISA, MASTERCARD, AMEX).
The name of the bank.