TraktShow

@Serializable
data class TraktShow(val title: String? = null, val overview: String? = null, val homepage: String? = null, val certification: String? = null, val country: String? = null, val year: Int? = null, val ids: TraktItemIds? = null, val network: String? = null, val airedEpisodes: Int? = null, val firstAired: Instant? = null, val runtime: Int? = null, val rating: Float? = null, val votes: Int? = null, val status: TraktShowStatus? = null, val airs: TraktAirs? = null, val genres: List<String> = emptyList())

Constructors

Link copied to clipboard
constructor(title: String? = null, overview: String? = null, homepage: String? = null, certification: String? = null, country: String? = null, year: Int? = null, ids: TraktItemIds? = null, network: String? = null, airedEpisodes: Int? = null, firstAired: Instant? = null, runtime: Int? = null, rating: Float? = null, votes: Int? = null, status: TraktShowStatus? = null, airs: TraktAirs? = null, genres: List<String> = emptyList())

Properties

Link copied to clipboard
val airedEpisodes: Int? = null
Link copied to clipboard
val airs: TraktAirs? = null
Link copied to clipboard
val certification: String? = null
Link copied to clipboard
val country: String? = null
Link copied to clipboard
val firstAired: Instant? = null
Link copied to clipboard
Link copied to clipboard
val homepage: String? = null
Link copied to clipboard
val ids: TraktItemIds? = null
Link copied to clipboard
val network: String? = null
Link copied to clipboard
val overview: String? = null
Link copied to clipboard
val rating: Float? = null
Link copied to clipboard
val runtime: Int? = null
Link copied to clipboard
val status: TraktShowStatus? = null
Link copied to clipboard
val title: String? = null
Link copied to clipboard
val votes: Int? = null
Link copied to clipboard
val year: Int? = null