SpotifyApiSpotify LogoJS

Paging<T> global.d.ts#L60

The paging object is a form of collection of items from the spotify api.

https://developer.spotify.com/documentation/web-api/reference/#object-pagingobject

Properties:

NameTypeDescription
hrefstringA link to the Web API endpoint returning the full result of the request.
itemsT[]The requested data.
limitnumberThe maximum number of items in the response (as set in the query or by default).
nextstringURL to the next page of items. (null if none)
offsetnumberThe offset of the items returned (as set in the query or by default)
previousstringURL to the previous page of items. (null if none)
totalnumberThe total number of items available to return.