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

com.lajospolya.spotifyapiwrapper.response.TrackLink 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.Map;

/**
 * @author Lajos Polya
 * Represent Track Link object as described at
 * https://developer.spotify.com/documentation/web-api/reference-beta/
 */
public class TrackLink
{
    private Map external_urls;
    private String href;
    private String id;
    private String type;
    private String uri;

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