NfcUid

@Serializable
data class NfcUid(val created: Long = 0, val livemode: Boolean = false, val uid: String?) : CollectedData

Represents non-payment data collected using collectData with the NFC interface.

Constructors

Link copied to clipboard
constructor(created: Long = 0, livemode: Boolean = false, uid: String?)

Properties

Link copied to clipboard
open override val created: Long = 0

Time at which the object was created. Measured in seconds since the Unix epoch.

Link copied to clipboard
open override val livemode: Boolean = false

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

Link copied to clipboard
val uid: String?

The UID of the NFC collected data, if it exists.