Cloudstream
Toggle table of contents
JVM
Target filter
JVM
Switch theme
Search in API
Skip to content
Cloudstream
App
/
com.lagradost.cloudstream3.syncproviders.providers
/
SimklApi
/
Companion
/
EpisodeMetadata
Episode
Metadata
@
Serializable
(
with
=
SimklApi.Companion.EpisodeMetadata.Serializer::class
)
data
class
EpisodeMetadata
(
val
title
:
String
?
,
val
description
:
String
?
,
val
season
:
Int
?
,
val
episode
:
Int
,
val
img
:
String
?
)
(
source
)
https://simkl.docs.apiary.io/#reference/tv/episodes/get-tv-show-episodes
Members
Constructors
Episode
Metadata
Link copied to clipboard
constructor
(
title
:
String
?
,
description
:
String
?
,
season
:
Int
?
,
episode
:
Int
,
img
:
String
?
)
Types
Companion
Link copied to clipboard
object
Companion
Serializer
Link copied to clipboard
object
Serializer
:
NonEmptySerializer
<
SimklApi.Companion.EpisodeMetadata
>
Properties
description
Link copied to clipboard
@
SerialName
(
value
=
"description"
)
val
description
:
String
?
episode
Link copied to clipboard
@
SerialName
(
value
=
"episode"
)
val
episode
:
Int
img
Link copied to clipboard
@
SerialName
(
value
=
"img"
)
val
img
:
String
?
season
Link copied to clipboard
@
SerialName
(
value
=
"season"
)
val
season
:
Int
?
title
Link copied to clipboard
@
SerialName
(
value
=
"title"
)
val
title
:
String
?