AlertDetails

data class AlertDetails(id: Int, createTime: Instant, subject: String, msgText: String?, readTime: Instant?, deleteTime: Instant?, symbol: String?, next: String?, prev: String?)

Parameters

id

The numeric alert ID

createTime

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

subject

The subject of the alert

msgText

The text of the alert message

readTime

The time the alert was read

deleteTime

The time the alert was deleted

symbol

The market symbol for the instrument related to this alert, if any; for example, GOOG. It is set only in case of Stock alerts.

next

Contains url for next alert

prev

Contains url for previous alert

Constructors

AlertDetails
Link copied to clipboard
fun AlertDetails(id: Int, createTime: Instant, subject: String, msgText: String?, readTime: Instant?, deleteTime: Instant?, symbol: String?, next: String?, prev: String?)
The numeric alert ID

Properties

createTime
Link copied to clipboard
val createTime: Instant
The date and time the alert was issued, in Epoch time
deleteTime
Link copied to clipboard
val deleteTime: Instant?
The time the alert was deleted
id
Link copied to clipboard
val id: Int
The numeric alert ID
msgText
Link copied to clipboard
val msgText: String?
The text of the alert message
next
Link copied to clipboard
val next: String?
Contains url for next alert
prev
Link copied to clipboard
val prev: String?
Contains url for previous alert
readTime
Link copied to clipboard
val readTime: Instant?
The time the alert was read
subject
Link copied to clipboard
val subject: String
The subject of the alert
symbol
Link copied to clipboard
val symbol: String?
The market symbol for the instrument related to this alert, if any; for example, GOOG.

Sources

jvm source
Link copied to clipboard