Spotify Web API v0.1.0 Spotify.Pagings.Paging View Source
The offset-based paging object is a container for a set of objects.
It contains a key called items (whose value is an array of the requested objects)
along with other keys like previous, next, and limit that can be useful in future calls.
| Key | Value Description |
|---|---|
| href | A link to the Web API endpoint returning the full result of the request. |
| items | The requested data. |
| limit | The maximum number of items in the response (as set in the query or by default). |
| next | URL to the next page of items. ( null if none) |
| offset | The offset of the items returned (as set in the query or by default). |
| previous | URL to the previous page of items. ( null if none) |
| total | The total number of items available to return. |