Package de.sonallux.spotify.api.models
Class Paging<T>
- java.lang.Object
-
- de.sonallux.spotify.api.models.Paging<T>
-
public class Paging<T> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description StringhrefA link to the Web API endpoint returning the full result of the requestList<T>itemsThe requested contentintlimitThe maximum number of items in the response (as set in the query or by default).StringnextURL to the next page of items.intoffsetThe offset of the items returned (as set in the query or by default)StringpreviousURL to the previous page of items.inttotalThe total number of items available to return.
-
Constructor Summary
Constructors Constructor Description Paging()
-
-
-
Field Detail
-
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)
-
offset
public int offset
The offset of the items returned (as set in the query or by default)
-
previous
public String previous
URL to the previous page of items. (
nullif none)
-
total
public int total
The total number of items available to return.
-
-