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

com.lajospolya.spotifyapiwrapper.response.RecommendationSeed 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 com.lajospolya.spotifyapiwrapper.enumeration.RecommendationSeedType;

/**
 * @author Lajos Polya
 * Represent the Recommendation object as described at
 * https://developer.spotify.com/documentation/web-api/reference-beta/
 */
public class RecommendationSeed
{
    private Integer afterFilteringSize;
    private Integer afterRelinkingSize;
    private String href;
    private String id;
    private Integer initialPoolSize;
    private RecommendationSeedType type;

    public Integer getAfterFilteringSize()
    {
        return afterFilteringSize;
    }

    public void setAfterFilteringSize(Integer afterFilteringSize)
    {
        this.afterFilteringSize = afterFilteringSize;
    }

    public Integer getAfterRelinkingSize()
    {
        return afterRelinkingSize;
    }

    public void setAfterRelinkingSize(Integer afterRelinkingSize)
    {
        this.afterRelinkingSize = afterRelinkingSize;
    }

    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 Integer getInitialPoolSize()
    {
        return initialPoolSize;
    }

    public void setInitialPoolSize(Integer initialPoolSize)
    {
        this.initialPoolSize = initialPoolSize;
    }

    public RecommendationSeedType getType()
    {
        return type;
    }

    public void setType(RecommendationSeedType type)
    {
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy