get Saved Shows
suspend fun getSavedShows(limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null): PagingObject<SavedShow>(source)
Get a list of shows saved in the current Spotify user’s library. Optional parameters can be used to limit the number of shows returned.
Requires the SpotifyScope.UserLibraryRead scope
Return
Paging Object of SavedShow ordered by position in library
Parameters
limit
The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.
offset
The index of the first item to return. Default: 0. Use with limit to get the next set of items