Class GetPlaylistCoverRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.playlists.GetPlaylistCoverRequest
-
public class GetPlaylistCoverRequest extends Object
Get a Playlist Cover Image requestResponse
On success, the response body contains a list of image objects in JSON format and the HTTP status code in the response header is
200OK
On error, the header status code is an error code and the response body contains an error object.
-
-
Constructor Summary
Constructors Constructor Description GetPlaylistCoverRequest(ApiClient apiClient, String playlistId)Get a Playlist Cover Image request
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiCall<List<Image>>build()Build the request into an executable call
-
-
-
Constructor Detail
-
GetPlaylistCoverRequest
public GetPlaylistCoverRequest(ApiClient apiClient, String playlistId)
Get a Playlist Cover Image request
- Parameters:
apiClient-The API client
playlistId-The Spotify ID for the playlist.
-
-