mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Episode documentation
This commit is contained in:
parent
48ee2c0e56
commit
8cff45ddd1
1 changed files with 11 additions and 1 deletions
|
@ -1700,7 +1700,17 @@ suspend fun MainAPI.newMovieLoadResponse(
|
||||||
builder.initializer()
|
builder.initializer()
|
||||||
return builder
|
return builder
|
||||||
}
|
}
|
||||||
|
/** Episode information that will be passed to LoadLinks function & showed on UI
|
||||||
|
* @property data string used as main LoadLinks fun parameter.
|
||||||
|
* @property name Name of the Episode.
|
||||||
|
* @property season Season number.
|
||||||
|
* @property episode Episode number.
|
||||||
|
* @property posterUrl URL of Episode's poster image.
|
||||||
|
* @property rating Episode rating.
|
||||||
|
* @property date Episode air date, see addDate.
|
||||||
|
* @property runTime Episode runtime in seconds.
|
||||||
|
* @see[addDate]
|
||||||
|
* */
|
||||||
data class Episode(
|
data class Episode(
|
||||||
var data: String,
|
var data: String,
|
||||||
var name: String? = null,
|
var name: String? = null,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue