CardInformation
data class CardInformation(val maskedNumber: String? = null, val iin: String? = null, val scheme: String? = null, val preferredScheme: String? = null) : Parcelable
Allows to provide card information that will be visible in UI.
Parameters
maskedNumber
Masked card number displayed to user as is.
iin
Card issuer identification number. Corresponds to the first 6 or 8 digits of the main card number. When this property is null implementation will attempt to extract IIN from maskedNumber. You may want to set this property explicitly if IIN is hidden in masked number.
scheme
Scheme of the card.
preferredScheme
Preferred scheme of the card previously selected by the user if any.