TmdbEpisode

@Serializable
data class TmdbEpisode(val id: Int, val overview: String? = null, 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 crew: List<TmdbCrew>? = null, val guestStars: List<TmdbCast>? = null) : TmdbAnyMedia, TmdbBackdropMedia

Constructors

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

Properties

Link copied to clipboard
@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
val crew: List<TmdbCrew>? = null
Link copied to clipboard
Link copied to clipboard
val guestStars: List<TmdbCast>? = null
Link copied to clipboard
open override val id: Int
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val overview: String? = null
Link copied to clipboard
Link copied to clipboard
val stillPath: String? = null
Link copied to clipboard
val voteAverage: Float? = null
Link copied to clipboard
val voteCount: Int? = null