Alert

data class Alert(id: Int, createTime: Instant?, subject: String, status: AlertStatus)

Parameters

id

The numeric alert ID

createTime

The date and time the alert was issued, in Epoch time

subject

The subject of the alert

status

UNREAD, READ, DELETED, UNDELETED

Constructors

Alert
Link copied to clipboard
fun Alert(id: Int, createTime: Instant?, subject: String, status: AlertStatus)
The numeric alert ID

Properties

createTime
Link copied to clipboard
val createTime: Instant?
The date and time the alert was issued, in Epoch time
id
Link copied to clipboard
val id: Int
The numeric alert ID
status
Link copied to clipboard
val status: AlertStatus
UNREAD, READ, DELETED, UNDELETED
subject
Link copied to clipboard
val subject: String
The subject of the alert

Sources

jvm source
Link copied to clipboard