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
val firstAired: Instant? = null
Link copied to clipboard
val ids: TraktItemIds? = null
Link copied to clipboard
val number: Int
Link copied to clipboard
val numberAbs: Int? = null
Link copied to clipboard
val overview: String? = null
Link copied to clipboard
val rating: Float? = null
Link copied to clipboard
val season: Int
Link copied to clipboard
val title: String? = null
Link copied to clipboard
val votes: Int? = null