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

de.sonallux.spotify.api.apis.shows.SaveShowsUserRequest Maven / Gradle / Ivy

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

import com.fasterxml.jackson.core.type.TypeReference;
import de.sonallux.spotify.api.http.ApiCall;
import de.sonallux.spotify.api.http.ApiClient;
import de.sonallux.spotify.api.http.Request;
import de.sonallux.spotify.api.models.*;

/**
 * 

Save Shows for Current User request

* *

Required OAuth scopes

* user-library-modify * *

Response

*

Show saved

*/ public class SaveShowsUserRequest { private static final TypeReference RESPONSE_TYPE = new TypeReference<>() {}; private final ApiClient apiClient; private final Request request; /** * Save Shows for Current User request * @param apiClient

The API client

* @param ids

A JSON array of the Spotify IDs.
A maximum of 50 items can be specified in one request. Note: if the ids parameter is present in the query string, any IDs listed here in the body will be ignored.

*/ public SaveShowsUserRequest(ApiClient apiClient, java.util.List ids) { this.apiClient = apiClient; this.request = new Request("PUT", "/me/shows") .addBodyParameter("ids", ids) ; } /** * Build the request into an executable api call * @return an executable api call */ public ApiCall build() { return apiClient.createApiCall(request, RESPONSE_TYPE); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy