EmvCLPollingInfo

data class EmvCLPollingInfo(val contactlessCardType: ContactlessCardType, val atqa: ByteArray, val ats: ByteArray, val uid: ByteArray, val sak: Byte) : Parcelable

Data class representing information obtained during EMV contactless card polling.

This class encapsulates details about the detected card, including its type, Answer to Request type A (ATQA), Answer to Select (ATS), Unique Identifier (UID), and Select Acknowledge (SAK).

Constructors

Link copied to clipboard
constructor(contactlessCardType: ContactlessCardType, atqa: ByteArray, ats: ByteArray, uid: ByteArray, sak: Byte)

Properties

Link copied to clipboard

The Answer to Request type A (ATQA) bytes.

Link copied to clipboard

The Answer to Select (ATS) bytes.

Link copied to clipboard

The type of the detected card.

Link copied to clipboard
val sak: Byte

The Select Acknowledge (SAK) byte.

Link copied to clipboard

The Unique Identifier (UID) bytes of the card.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)