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

de.sonallux.spotify.api.apis.audiobooks.GetMultipleAudiobooksRequest Maven / Gradle / Ivy

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

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.*;

/**
 * 

Get Several Audiobooks request

* *

Response

*

A set of audiobooks. If one of the requested audiobooks is unavailable then you'll find a null item in the audiobooks array where the audiobook object would otherwise be.

*/ public class GetMultipleAudiobooksRequest { private static final TypeReference RESPONSE_TYPE = new TypeReference<>() {}; private final ApiClient apiClient; private final Request request; /** * Get Several Audiobooks request * @param apiClient

The API client

* @param ids

A comma-separated list of the Spotify IDs. For example: ids=18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ. Maximum: 50 IDs.

*/ public GetMultipleAudiobooksRequest(ApiClient apiClient, String ids) { this.apiClient = apiClient; this.request = new Request("GET", "/audiobooks") .addQueryParameter("ids", String.valueOf(ids)) ; } /** * @param market

An ISO 3166-1 alpha-2 country code. If a country code is specified, only content that is available in that market will be returned.
If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.
Note: If neither market or user country are provided, the content is considered unavailable for the client.
Users can view the country that is associated with their account in the account settings.

* @return this request */ public GetMultipleAudiobooksRequest market(String market) { this.request.addQueryParameter("market", String.valueOf(market)); return this; } /** * 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