TraktEpisodeSummary

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

Constructors

Link copied to clipboard
constructor(season: Int, number: Int, title: String, overview: String? = null, ids: TraktItemIds? = null, firstAired: Instant? = null, numberAbs: Int? = null, rating: Int? = 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: Int? = null
Link copied to clipboard
@SerialName(value = "season")
val season: Int
Link copied to clipboard
@SerialName(value = "title")
val title: String
Link copied to clipboard
@SerialName(value = "votes")
val votes: Int? = null