Client Show Api
Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.
Constructors
ClientShowApi
Link copied to clipboard
Functions
getShow
Link copied to clipboard
getShowEpisodes
Link copied to clipboard
suspend fun getShowEpisodes(id: String, limit: Int? = null, offset: Int? = null): PagingObject<SimpleEpisode>
Content copied to clipboard
suspend fun getShowEpisodes(id: String, limit: Int? = null, offset: Int? = null, market: Market): PagingObject<SimpleEpisode>
Content copied to clipboard
getShowEpisodesRestAction
Link copied to clipboard
fun getShowEpisodesRestAction(id: String, limit: Int? = null, offset: Int? = null): SpotifyRestAction<PagingObject<SimpleEpisode>>
Content copied to clipboard
fun getShowEpisodesRestAction(id: String, limit: Int? = null, offset: Int? = null, market: Market): SpotifyRestAction<PagingObject<SimpleEpisode>>
Content copied to clipboard
getShowRestAction
Link copied to clipboard
fun getShowRestAction(id: String, market: Market): SpotifyRestAction<Show?>
Content copied to clipboard
getShowsRestAction
Link copied to clipboard
fun getShowsRestAction(vararg ids: String): SpotifyRestAction<List<SimpleShow?>>
Content copied to clipboard
fun getShowsRestAction(vararg ids: String, market: Market): SpotifyRestAction<List<SimpleShow?>>
Content copied to clipboard
Properties
Sources
(source)
Link copied to clipboard