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

de.sonallux.spotify.api.models.RecommendationSeed Maven / Gradle / Ivy

The newest version!
package de.sonallux.spotify.api.models;

import lombok.*;

/**
 * RecommendationSeedObject
 */
@Getter
@Setter
@NoArgsConstructor
public class RecommendationSeed {
    /**
     * 

The number of tracks available after min_* and max_* filters have been applied.

*/ public int afterfilteringsize; /** *

The number of tracks available after relinking for regional availability.

*/ public int afterrelinkingsize; /** *

A link to the full track or artist data for this seed. For tracks this will be a link to a Track Object. For artists a link to an Artist Object. For genre seeds, this value will be null.

*/ public String href; /** *

The id used to select this seed. This will be the same as the string used in the seed_artists, seed_tracks or seed_genres parameter.

*/ public String id; /** *

The number of recommended tracks available for this seed.

*/ public int initialpoolsize; /** *

The entity type of this seed. One of artist, track or genre.

*/ public String type; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy