CVVTokenizationRequest

data class CVVTokenizationRequest(val cvv: String, val cardScheme: CardScheme = CardScheme.UNKNOWN, val resultHandler: (CVVTokenizationResultHandler) -> Unit)

Represents a request to tokenize a CVV.

Parameters

cvv

The CVV value to tokenize.

cardScheme

(Optional) The card scheme for the CVV to validate, if known. Default is CardScheme.UNKNOWN.

resultHandler

A callback function to handle the tokenization result. It will receive a CVVTokenizationResultHandler which can be used to handle success or failure outcomes.

Constructors

Link copied to clipboard
constructor(cvv: String, cardScheme: CardScheme = CardScheme.UNKNOWN, resultHandler: (CVVTokenizationResultHandler) -> Unit)

Properties

Link copied to clipboard
Link copied to clipboard
val cvv: String
Link copied to clipboard