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.

Constructors

Link copied to clipboard
constructor(maskedNumber: String? = null, iin: String? = null, scheme: String? = null, preferredScheme: String? = null)

Properties

Link copied to clipboard
val iin: String? = null
Link copied to clipboard
val maskedNumber: String? = null
Link copied to clipboard
val preferredScheme: String? = null
Link copied to clipboard
val scheme: String? = null

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)