DownloadQueueItem

@Serializable
data class DownloadQueueItem(val episode: ResultEpisode, val isMovie: Boolean, val resultName: String, val resultType: TvType, val resultPoster: String?, val apiName: String, val resultId: Int, val resultUrl: String, val links: List<ExtractorLink>? = null, val subs: List<SubtitleData>? = null)(source)

General data about the episode and show to start a download from.

Constructors

Link copied to clipboard
constructor(episode: ResultEpisode, isMovie: Boolean, resultName: String, resultType: TvType, resultPoster: String?, apiName: String, resultId: Int, resultUrl: String, links: List<ExtractorLink>? = null, subs: List<SubtitleData>? = null)

Properties

Link copied to clipboard
@SerialName(value = "apiName")
val apiName: String
Link copied to clipboard
@SerialName(value = "episode")
val episode: ResultEpisode
Link copied to clipboard
@SerialName(value = "isMovie")
val isMovie: Boolean
Link copied to clipboard
@SerialName(value = "links")
val links: List<ExtractorLink>?
Link copied to clipboard
@SerialName(value = "resultId")
val resultId: Int
Link copied to clipboard
@SerialName(value = "resultName")
val resultName: String
Link copied to clipboard
@SerialName(value = "resultPoster")
val resultPoster: String?
Link copied to clipboard
@SerialName(value = "resultType")
val resultType: TvType
Link copied to clipboard
@SerialName(value = "resultUrl")
val resultUrl: String
Link copied to clipboard
@SerialName(value = "subs")
val subs: List<SubtitleData>?

Functions

Link copied to clipboard