Package de.sonallux.spotify.api.models
Class Paging<T>
java.lang.Object
de.sonallux.spotify.api.models.Paging<T>
PagingObject
-
Field Summary
FieldsModifier and TypeFieldDescriptionA link to the Web API endpoint returning the full result of the requestThe requested data.intThe maximum number of items in the response (as set in the query or by default).URL to the next page of items.intThe offset of the items returned (as set in the query or by default)URL to the previous page of items.intThe total number of items available to return. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
items
The requested data.
-
href
A link to the Web API endpoint returning the full result of the request
-
limit
public int limitThe maximum number of items in the response (as set in the query or by default).
-
next
URL to the next page of items. (
nullif none) -
offset
public int offsetThe offset of the items returned (as set in the query or by default)
-
previous
URL to the previous page of items. (
nullif none) -
total
public int totalThe total number of items available to return.
-
-
Constructor Details
-
Paging
public Paging()
-