de.sonallux.spotify.api.apis.GenresApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
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