com.lajospolya.spotifyapiwrapper.response.PagingCursor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
package com.lajospolya.spotifyapiwrapper.response;
import java.util.List;
/**
* Spotify's implementation of a Paging Cursor
* @author Lajos Polya
* @param type of the item
*/
public class PagingCursor
{
private String href;
private List items;
private Integer limit;
private String next;
private Cursor cursors;
private Integer total;
public String getHref()
{
return href;
}
public void setHref(String href)
{
this.href = href;
}
public List getItems()
{
return items;
}
public void setItems(List items)
{
this.items = items;
}
public Integer getLimit()
{
return limit;
}
public void setLimit(Integer limit)
{
this.limit = limit;
}
public String getNext()
{
return next;
}
public void setNext(String next)
{
this.next = next;
}
public Cursor getCursors()
{
return cursors;
}
public void setCursors(Cursor cursors)
{
this.cursors = cursors;
}
public Integer getTotal()
{
return total;
}
public void setTotal(Integer total)
{
this.total = total;
}
}