![JAR search and dependency download from the Maven repository](/logo.png)
de.jsone_studios.wrapper.spotify.models.PlaylistBase 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 using Retrofit
The newest version!
package de.jsone_studios.wrapper.spotify.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
/**
* Base class for {@link Playlist} and
* {@link PlaylistSimple}
*/
public abstract class PlaylistBase
{
public boolean collaborative;
public Map external_urls;
public String href;
public String id;
public List images;
public String name;
public UserPublic owner;
@JsonProperty("public")
public boolean is_public;
public String snapshot_id;
public String type;
public String uri;
protected PlaylistBase()
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy