Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Episode(val id: String = "", val overview: String = "", val runtime: Int? = null, val number: Int = 0, val title: String = "", airDate: String? = null, val season: Int = 0, val image: String? = null, val rating: Double? = null) : Serializable

Data class representing an episode of a TV show.

Link copied to clipboard
@Serializable
data class Season(val overview: String? = null, val name: String = "", val episodes: List<Episode> = emptyList(), airDate: String? = null, episodeCount: Int? = null, val rating: Double? = null, val number: Int = 0, val image: String? = null) : Serializable

Data class representing a season of a TV show.