TraktSeason

@Serializable
data class TraktSeason(val number: Int, val ids: TraktItemIds? = null, val rating: Float? = null, val votes: Int? = null, val episodeCount: Int? = null, val airedEpisodes: Int? = null, val title: String? = null, val overview: String? = null, val network: String? = null, val firstAired: Instant? = null, val updatedAt: Instant? = null, val episodes: List<TraktEpisode>? = null)

Constructors

Link copied to clipboard
constructor(number: Int, ids: TraktItemIds? = null, rating: Float? = null, votes: Int? = null, episodeCount: Int? = null, airedEpisodes: Int? = null, title: String? = null, overview: String? = null, network: String? = null, firstAired: Instant? = null, updatedAt: Instant? = null, episodes: List<TraktEpisode>? = null)

Properties

Link copied to clipboard
val airedEpisodes: Int? = null
Link copied to clipboard
val episodeCount: Int? = null
Link copied to clipboard
val episodes: List<TraktEpisode>? = null
Link copied to clipboard
val firstAired: Instant? = null
Link copied to clipboard
val ids: TraktItemIds? = null
Link copied to clipboard
val network: String? = null
Link copied to clipboard
val number: Int
Link copied to clipboard
val overview: String? = null
Link copied to clipboard
val rating: Float? = null
Link copied to clipboard
val title: String? = null
Link copied to clipboard
val updatedAt: Instant? = null
Link copied to clipboard
val votes: Int? = null