CardToken

constructor(token: String)

Parameters

token

The secure token representing the card, generated after successful tokenization

Example:

// Create a card token from tokenization response
val cardToken = CardToken(
token = "1234567890abcdef"
)

// Use the token for payment processing
processPayment(cardToken.token)