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
@SerialName(value = "aired_episodes")
val airedEpisodes: Int? = null
Link copied to clipboard
@SerialName(value = "episode_count")
val episodeCount: Int? = null
Link copied to clipboard
@SerialName(value = "episodes")
val episodes: List<TraktEpisode>? = null
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 = "network")
val network: String? = null
Link copied to clipboard
@SerialName(value = "number")
val number: Int
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 = "title")
val title: String? = null
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant? = null
Link copied to clipboard
@SerialName(value = "votes")
val votes: Int? = null