StatusSchedule

data class StatusSchedule(val status: String, val periodBegin: String, val periodEnd: String? = null)

This type is used to schedule status periods in the future.

Parameters

status

Status value during the scheduled period.

periodBegin

Begin of the scheduled period, in UTC.

periodEnd

End of the scheduled period, if known, in UTC.

Constructors

Link copied to clipboard
constructor(status: String, periodBegin: String, periodEnd: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "period_begin")
val periodBegin: String
Link copied to clipboard
@SerializedName(value = "period_end")
val periodEnd: String? = null
Link copied to clipboard
@SerializedName(value = "status")
val status: String