NextAiring

data class NextAiring(val episode: Int, val unixTime: Long, val season: Int? = null)(source)

Data class holds next airing Episode info.

Parameters

episode

Next airing Episode number.

unixTime

Next airing Time in Unix time format.

season

Season number of next airing episode (Optional).

Constructors

Link copied to clipboard
constructor(episode: Int, unixTime: Long)

Secondary constructor for backwards compatibility without season. TODO Remove this constructor after there is a new stable release and extensions are updated to support season.

constructor(episode: Int, unixTime: Long, season: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val season: Int? = null
Link copied to clipboard