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

de.sonallux.spotify.api.apis.GenresApi Maven / Gradle / Ivy

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

import de.sonallux.spotify.api.http.ApiClient;
import de.sonallux.spotify.api.apis.genres.*;
import lombok.RequiredArgsConstructor;

/**
 * Genres
 */
@RequiredArgsConstructor
public class GenresApi {
    private final ApiClient apiClient;

    /**
     * 

Get Available Genre Seeds

*

Retrieve a list of available genres seed parameter values for recommendations.

* @return a {@link GetRecommendationGenresRequest} object to build and execute the request */ public GetRecommendationGenresRequest getRecommendationGenres() { return new GetRecommendationGenresRequest(apiClient); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy