TraktEpisode

@Serializable
data class TraktEpisode(val season: Int, val number: Int, val title: String? = null, val overview: String? = null, val ids: TraktItemIds? = null, val numberAbs: Int? = null, val firstAired: Instant? = null, val rating: Float? = null, val votes: Int? = null)

Constructors

Link copied to clipboard
constructor(season: Int, number: Int, title: String? = null, overview: String? = null, ids: TraktItemIds? = null, numberAbs: Int? = null, firstAired: Instant? = null, rating: Float? = null, votes: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "first_aired")
val firstAired: Instant? = null
Link copied to clipboard
@SerialName(value = "ids")
val ids: TraktItemIds? = null
Link copied to clipboard
@SerialName(value = "number")
val number: Int
Link copied to clipboard
@SerialName(value = "number_abs")
val numberAbs: Int? = null
Link copied to clipboard
@SerialName(value = "overview")
val overview: String? = null
Link copied to clipboard
@SerialName(value = "rating")
val rating: Float? = null
Link copied to clipboard
@SerialName(value = "season")
val season: Int
Link copied to clipboard
@SerialName(value = "title")
val title: String? = null
Link copied to clipboard
@SerialName(value = "votes")
val votes: Int? = null