CVVComponentConfig

data class CVVComponentConfig @JvmOverloads constructor(val cardScheme: CardScheme = CardScheme.UNKNOWN, val onCVVValueChange: (isEnteredCVVValid: Boolean) -> Unit, var cvvInputFieldStyle: InputFieldStyle = DefaultCVVInputFieldStyle.create())

CVVComponentConfig - It is used to provide CVV component configuration

Parameters

cardScheme
  • to validate entered CVV is valid or not in the SDK

onCVVValueChange
  • provides the isEnteredCVVValid for the given card scheme So, based on isEnteredCVVValid value developer can decide to hit the tokenization for CVV component

cvvInputFieldStyle

Constructors

Link copied to clipboard
constructor(cardScheme: CardScheme = CardScheme.UNKNOWN, onCVVValueChange: (isEnteredCVVValid: Boolean) -> Unit, cvvInputFieldStyle: InputFieldStyle = DefaultCVVInputFieldStyle.create())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val onCVVValueChange: (isEnteredCVVValid: Boolean) -> Unit