BlackList

data class BlackList(val publicPan: String, val amount: Double, val isDeleted: Boolean = false, val source: String? = null) : Parcelable

Data class representing an item in the offline black list.

Constructors

Link copied to clipboard
constructor(publicPan: String, amount: Double, isDeleted: Boolean = false, source: String? = null)

Properties

Link copied to clipboard
val amount: Double

The amount associated with the black list entry.

Link copied to clipboard
val isDeleted: Boolean

Whether the entry is marked as deleted.

Link copied to clipboard
val publicPan: String

The public portion of the card PAN.

Link copied to clipboard
val source: String?

The source of the black list entry.