CursorPaging<T>
extends Omit<Paging<T>, "offset" | "previous">
The cursor paging object of the player api.
Properties:
Name | Type | Description |
---|---|---|
cursors | Cursor | The cursors used to find the next set of items. |
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) |
total | number | The total number of items available to return. |