TmdbEpisodeDetail

@Serializable
data class TmdbEpisodeDetail(val id: Int, val overview: String, val episodeNumber: Int, val seasonNumber: Int, val airDate: LocalDate? = null, val name: String? = null, val voteAverage: Float? = null, val voteCount: Int? = null, val stillPath: String? = null, val images: TmdbResult<TmdbImages>? = null, val crew: List<TmdbCrew>? = null, val guestStars: List<TmdbCast>? = null, val externalIds: TmdbExternalIds? = null) : TmdbAnyMedia, TmdbBackdropMedia, TmdbRatingItem

Constructors

Link copied to clipboard
constructor(id: Int, overview: String, episodeNumber: Int, seasonNumber: Int, airDate: LocalDate? = null, name: String? = null, voteAverage: Float? = null, voteCount: Int? = null, stillPath: String? = null, images: TmdbResult<TmdbImages>? = null, crew: List<TmdbCrew>? = null, guestStars: List<TmdbCast>? = null, externalIds: TmdbExternalIds? = null)

Properties

Link copied to clipboard
@SerialName(value = "air_date")
@Serializable(with = LocalDateSerializer::class)
val airDate: LocalDate? = null
Link copied to clipboard
Link copied to clipboard
open override val backdropPath: String?
Link copied to clipboard
@SerialName(value = "crew")
val crew: List<TmdbCrew>? = null
Link copied to clipboard
@SerialName(value = "episode_number")
val episodeNumber: Int
Link copied to clipboard
@SerialName(value = "external_ids")
val externalIds: TmdbExternalIds? = null
Link copied to clipboard
@SerialName(value = "guest_stars")
val guestStars: List<TmdbCast>? = null
Link copied to clipboard
@SerialName(value = "id")
open override val id: Int
Link copied to clipboard
@SerialName(value = "images")
val images: TmdbResult<TmdbImages>? = null
Link copied to clipboard
@SerialName(value = "name")
val name: String? = null
Link copied to clipboard
@SerialName(value = "overview")
val overview: String
Link copied to clipboard
@SerialName(value = "season_number")
val seasonNumber: Int
Link copied to clipboard
@SerialName(value = "still_path")
val stillPath: String? = null
Link copied to clipboard
@SerialName(value = "vote_average")
open override val voteAverage: Float? = null
Link copied to clipboard
@SerialName(value = "vote_count")
open override val voteCount: Int? = null