SecurityCodeModel

constructor(mode: String? = null, location: String? = null, length: Int? = null)

Parameters

mode

How the security code should be handled (e.g., "mandatory", "optional")

location

Where the security code is located on the card (e.g., "back", "front")

length

Required length of the security code

Example:

val securityCode = SecurityCodeModel(
mode = "mandatory",
location = "back",
length = 3
)