Paging<T> global.d.ts#L60
The paging object is a form of collection of items from the spotify api.
Properties:
| Name | Type | Description |
|---|---|---|
| href | string | A link to the Web API endpoint returning the full result of the request. |
| items | T[] | The requested data. |
| limit | number | The maximum number of items in the response (as set in the query or by default). |
| next | string | URL to the next page of items. (null if none) |
| offset | number | The offset of the items returned (as set in the query or by default) |
| previous | string | URL to the previous page of items. (null if none) |
| total | number | The total number of items available to return. |