de.sonallux.spotify.api.apis.MarketsApi 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.markets.*;
import lombok.RequiredArgsConstructor;
/**
* Markets
*/
@RequiredArgsConstructor
public class MarketsApi {
private final ApiClient apiClient;
/**
* Get Available Markets
* Get the list of markets where Spotify is available.
* @return a {@link GetAvailableMarketsRequest} object to build and execute the request
*/
public GetAvailableMarketsRequest getAvailableMarkets() {
return new GetAvailableMarketsRequest(apiClient);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy