HypeTrainStatus

@Serializable
data class HypeTrainStatus(val current: HypeTrainCurrent? = null, val allTimeHigh: HypeTrainRecord? = null, val sharedAllTimeHigh: HypeTrainRecord? = null)

Represents the Hype Train status for a channel.

See also

Constructors

Link copied to clipboard
constructor(current: HypeTrainCurrent? = null, allTimeHigh: HypeTrainRecord? = null, sharedAllTimeHigh: HypeTrainRecord? = null)

Properties

Link copied to clipboard
@SerialName(value = "all_time_high")
val allTimeHigh: HypeTrainRecord?

an object with information about the channel's Hype Train records. null if a Hype Train has not occurred.

Link copied to clipboard

an object describing the current Hype Train. null if a Hype Train is not active.

Link copied to clipboard
@SerialName(value = "shared_all_time_high")
val sharedAllTimeHigh: HypeTrainRecord?

an object with information about the channel's shared Hype Train records. null if a shared Hype Train has not occurred.