de.sonallux.spotify.api.models.Paging Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
The newest version!
package de.sonallux.spotify.api.models;
import lombok.*;
/**
* PagingObject
*/
@Getter
@Setter
@NoArgsConstructor
public class Paging {
/**
* The requested data.
*/
public java.util.List items;
/**
* A link to the Web API endpoint returning the full result of the request
*/
public String href;
/**
* The maximum number of items in the response (as set in the query or by default).
*/
public int limit;
/**
* URL to the next page of items. ( null
if none)
*/
public String next;
/**
* The offset of the items returned (as set in the query or by default)
*/
public int offset;
/**
* URL to the previous page of items. ( null
if none)
*/
public String previous;
/**
* The total number of items available to return.
*/
public int total;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy