Nux

data class Nux(val id: String, val completed: Boolean, val data: String? = null, val expiresAt: Timestamp? = null)

A new user experiences (NUX) storage object

Parameters

data

Arbitrary data for the NUX. The structure is defined by the NUX itself. Limited to 300 characters.

expiresAt

The date and time at which the NUX will expire and should be considered completed.

Constructors

Link copied to clipboard
constructor(id: String, completed: Boolean, data: String? = null, expiresAt: Timestamp? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val data: String? = null

Arbitrary data for the NUX. The structure is defined by the NUX itself. Limited to 300 characters.

Link copied to clipboard
val expiresAt: Timestamp? = null

The date and time at which the NUX will expire and should be considered completed.

Link copied to clipboard
val id: String