Package-level declarations

Types

Link copied to clipboard
sealed class Flag

Represents a flag associated with a URL.

Link copied to clipboard
sealed class MediaLink

Represents a link to media content, such as a video stream or subtitle file.

Link copied to clipboard
data class Stream(val name: String, val url: String, val description: String? = null, val flags: Set<Flag>? = null) : MediaLink, Serializable

A wrapper for the watchable url link of the extracted film to watch.

Link copied to clipboard
data class Subtitle(val language: String, val type: SubtitleSource = ONLINE, val url: String, val flags: Set<Flag>? = null) : MediaLink, Serializable

Data class representing a subtitle entity.

Link copied to clipboard

Enum class representing different types or sources of subtitle content.