Package de.sonallux.spotify.api.models
Class CursorPaging<T>
- java.lang.Object
-
- de.sonallux.spotify.api.models.CursorPaging<T>
-
public class CursorPaging<T> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description CursorcursorsThe cursors used to find the next set of items.StringhrefA link to the Web API endpoint returning the full result of the request.List<T>itemsThe requested data.intlimitThe maximum number of items in the response (as set in the query or by default).StringnextURL to the next page of items.inttotalThe total number of items available to return.
-
Constructor Summary
Constructors Constructor Description CursorPaging()
-
-
-
Field Detail
-
cursors
public Cursor cursors
The cursors used to find the next set of items.
-
href
public String href
A link to the Web API endpoint returning the full result of the request.
-
limit
public int limit
The maximum number of items in the response (as set in the query or by default).
-
next
public String next
URL to the next page of items. (
nullif none)
-
total
public int total
The total number of items available to return.
-
-