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

com.lajospolya.spotifyapiwrapper.response.AlbumBase Maven / Gradle / Ivy

Go to download

This project wraps the Spotify public API in order to allow users to intuitively use it

There is a newer version: 3.0.RELEASE
Show newest version
package com.lajospolya.spotifyapiwrapper.response;

import java.util.List;
import java.util.Map;

public class AlbumBase
{
    private String album_type;
    private List artists;
    private List available_markets;
    private Map external_urls;
    private String href;
    private List images;
    private String name;
    private String release_date;
    private String release_date_precision;
    private Map restrictions;
    private String type;
    private String uri;

    public String getAlbum_type()
    {
        return album_type;
    }

    public void setAlbum_type(String album_type)
    {
        this.album_type = album_type;
    }

    public List getArtists()
    {
        return artists;
    }

    public void setArtists(List artists)
    {
        this.artists = artists;
    }

    public List getAvailable_markets()
    {
        return available_markets;
    }

    public void setAvailable_markets(List available_markets)
    {
        this.available_markets = available_markets;
    }

    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 List getImages()
    {
        return images;
    }

    public void setImages(List images)
    {
        this.images = images;
    }

    public String getName()
    {
        return name;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public String getRelease_date()
    {
        return release_date;
    }

    public void setRelease_date(String release_date)
    {
        this.release_date = release_date;
    }

    public String getRelease_date_precision()
    {
        return release_date_precision;
    }

    public void setRelease_date_precision(String release_date_precision)
    {
        this.release_date_precision = release_date_precision;
    }

    public Map getRestrictions()
    {
        return restrictions;
    }

    public void setRestrictions(Map restrictions)
    {
        this.restrictions = restrictions;
    }

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy