All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.fusionx.spotify.model.PagingObject Maven / Gradle / Ivy

The newest version!
package co.fusionx.spotify.model;

import java.util.List;

public interface PagingObject {

    public String getHref();

    public List getItems();

    public int getLimit();

    public String getNext();

    public int getOffset();

    public String getPrevious();

    public int getTotal();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy