com.lajospolya.spotifyapiwrapper.response.Show 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 com.lajospolya.spotifyapiwrapper.enumeration.Explicit;
import java.util.List;
import java.util.Map;
/**
* @author Lajos Polya
* Represent the response of GetShow as described at
* https://developer.spotify.com/documentation/web-api/reference-beta/
*/
public class Show
{
private List available_markets;
private List copyrights;
private String description;
private Explicit explicit;
private Paging episodes;
private Map external_urls;
private String href;
private String id;
private List images;
private Boolean is_externally_hosted;
private List languages;
private String media_type;
private String name;
private String publisher;
private String type;
private String uri;
public List getAvailable_markets()
{
return available_markets;
}
public void setAvailable_markets(List available_markets)
{
this.available_markets = available_markets;
}
public List getCopyrights()
{
return copyrights;
}
public void setCopyrights(List copyrights)
{
this.copyrights = copyrights;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
public Explicit getExplicit()
{
return explicit;
}
public void setExplicit(Explicit explicit)
{
this.explicit = explicit;
}
public Paging getEpisodes()
{
return episodes;
}
public void setEpisodes(Paging episodes)
{
this.episodes = episodes;
}
public Map getExternal_urls()
{
return external_urls;
}
public void setExternal_urls(Map external_urls)
{
this.external_urls = external_urls;
}
public String getHref()
{
return href;
}
public void setHref(String href)
{
this.href = href;
}
public String getId()
{
return id;
}
public void setId(String id)
{
this.id = id;
}
public List getImages()
{
return images;
}
public void setImages(List images)
{
this.images = images;
}
public Boolean getIs_externally_hosted()
{
return is_externally_hosted;
}
public void setIs_externally_hosted(Boolean is_externally_hosted)
{
this.is_externally_hosted = is_externally_hosted;
}
public List getLanguages()
{
return languages;
}
public void setLanguages(List languages)
{
this.languages = languages;
}
public String getMedia_type()
{
return media_type;
}
public void setMedia_type(String media_type)
{
this.media_type = media_type;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getPublisher()
{
return publisher;
}
public void setPublisher(String publisher)
{
this.publisher = publisher;
}
public String getType()
{
return type;
}
public void setType(String type)
{
this.type = type;
}
public String getUri()
{
return uri;
}
public void setUri(String uri)
{
this.uri = uri;
}
}