tmdb-api
common
tmdb-api
/
app.moviebase.tmdb.model
/
TmdbEpisode
Tmdb
Episode
@
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
Members
Constructors
Tmdb
Episode
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
air
Date
Link copied to clipboard
@
SerialName
(
value
=
"air_date"
)
@
Serializable
(
with
=
LocalDateSerializer::class
)
val
airDate
:
LocalDate
?
=
null
backdrop
Image
Link copied to clipboard
open
val
backdropImage
:
TmdbImage
?
backdrop
Path
Link copied to clipboard
open
override
val
backdropPath
:
String
?
crew
Link copied to clipboard
@
SerialName
(
value
=
"crew"
)
val
crew
:
List
<
TmdbCrew
>
?
=
null
episode
Number
Link copied to clipboard
@
SerialName
(
value
=
"episode_number"
)
val
episodeNumber
:
Int
guest
Stars
Link copied to clipboard
@
SerialName
(
value
=
"guest_stars"
)
val
guestStars
:
List
<
TmdbCast
>
?
=
null
id
Link copied to clipboard
@
SerialName
(
value
=
"id"
)
open
override
val
id
:
Int
name
Link copied to clipboard
@
SerialName
(
value
=
"name"
)
val
name
:
String
?
=
null
overview
Link copied to clipboard
@
SerialName
(
value
=
"overview"
)
val
overview
:
String
?
=
null
season
Number
Link copied to clipboard
@
SerialName
(
value
=
"season_number"
)
val
seasonNumber
:
Int
still
Path
Link copied to clipboard
@
SerialName
(
value
=
"still_path"
)
val
stillPath
:
String
?
=
null
vote
Average
Link copied to clipboard
@
SerialName
(
value
=
"vote_average"
)
val
voteAverage
:
Float
?
=
null
vote
Count
Link copied to clipboard
@
SerialName
(
value
=
"vote_count"
)
val
voteCount
:
Int
?
=
null