AllItemsResponse

data class AllItemsResponse(    val shows: List<SimklApi.Companion.AllItemsResponse.ShowMetadata> = emptyList(),     val anime: List<SimklApi.Companion.AllItemsResponse.ShowMetadata> = emptyList(),     val movies: List<SimklApi.Companion.AllItemsResponse.MovieMetadata> = emptyList())(source)

https://simkl.docs.apiary.io/#reference/sync/get-all-items/get-all-items-in-the-user's-watchlist

Constructors

Link copied to clipboard
constructor(    shows: List<SimklApi.Companion.AllItemsResponse.ShowMetadata> = emptyList(),     anime: List<SimklApi.Companion.AllItemsResponse.ShowMetadata> = emptyList(),     movies: List<SimklApi.Companion.AllItemsResponse.MovieMetadata> = emptyList())

Types

Link copied to clipboard
object Companion
Link copied to clipboard
interface Metadata
Link copied to clipboard
data class MovieMetadata(    val lastWatchedAt: String?,     val status: String,     val userRating: Int?,     val lastWatched: String?,     val watchedEpisodesCount: Int?,     val totalEpisodesCount: Int?,     val movie: SimklApi.Companion.AllItemsResponse.ShowMetadata.Show) : SimklApi.Companion.AllItemsResponse.Metadata
Link copied to clipboard
data class ShowMetadata(    val lastWatchedAt: String?,     val status: String,     val userRating: Int?,     val lastWatched: String?,     val watchedEpisodesCount: Int?,     val totalEpisodesCount: Int?,     val show: SimklApi.Companion.AllItemsResponse.ShowMetadata.Show) : SimklApi.Companion.AllItemsResponse.Metadata