ShowApi

class ShowApi(api: GenericSpotifyApi) : SpotifyEndpoint

Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.

Api Reference

Constructors

ShowApi
Link copied to clipboard
common
fun ShowApi(api: GenericSpotifyApi)

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
getShow
Link copied to clipboard
common
suspend fun getShow(id: String, market: Market? = null): Show?
Get Spotify catalog information for a single show identified by its unique Spotify ID.
getShowEpisodes
Link copied to clipboard
common
suspend fun getShowEpisodes(id: String, limit: Int? = null, offset: Int? = null, market: Market? = null): PagingObject<SimpleEpisode>
Get Spotify catalog information about an show’s episodes.
getShows
Link copied to clipboard
common
suspend fun getShows(vararg ids: String, market: Market? = null): List<SimpleShow?>
Get Spotify catalog information for multiple shows based on their Spotify IDs.
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

api
Link copied to clipboard
common
val api: GenericSpotifyApi
cache
Link copied to clipboard
common
val cache: SpotifyCache

Sources

(source)
Link copied to clipboard