using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace SpotifyAPI.Web
{
///
/// Endpoints for retrieving information about,
/// and managing, tracks that the current user has saved in their “Your Music” library.
///
public interface ILibraryClient
{
///
/// Remove one or more albums from the current user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-remove-albums-user
///
///
Task RemoveAlbums(LibraryRemoveAlbumsRequest request, CancellationToken cancel = default);
///
/// Remove one or more tracks from the current user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-remove-tracks-user
///
///
Task RemoveTracks(LibraryRemoveTracksRequest request, CancellationToken cancel = default);
///
/// Delete one or more shows from current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-remove-shows-user
///
///
Task RemoveShows(LibraryRemoveShowsRequest request, CancellationToken cancel = default);
///
/// Delete one or more episodes from current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference/#endpoint-remove-episodes-user
///
///
Task RemoveEpisodes(LibraryRemoveEpisodesRequest request, CancellationToken cancel = default);
///
/// Save one or more tracks to the current user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-save-tracks-user
///
///
Task SaveTracks(LibrarySaveTracksRequest request, CancellationToken cancel = default);
///
/// Save one or more albums to the current user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-save-albums-user
///
///
Task SaveAlbums(LibrarySaveAlbumsRequest request, CancellationToken cancel = default);
///
/// Save one or more shows to current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-save-shows-user
///
///
Task SaveShows(LibrarySaveShowsRequest request, CancellationToken cancel = default);
///
/// Save one or more episodes to current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference/#endpoint-save-episodes-user
///
///
Task SaveEpisodes(LibrarySaveEpisodesRequest request, CancellationToken cancel = default);
///
/// Check if one or more tracks is already saved in the current Spotify user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-check-users-saved-tracks
///
///
Task> CheckTracks(LibraryCheckTracksRequest request, CancellationToken cancel = default);
///
/// Check if one or more albums is already saved in the current Spotify user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-check-users-saved-albums
///
///
Task> CheckAlbums(LibraryCheckAlbumsRequest request, CancellationToken cancel = default);
///
/// Check if one or more shows is already saved in the current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-check-users-saved-shows
///
///
Task> CheckShows(LibraryCheckShowsRequest request, CancellationToken cancel = default);
///
/// Check if one or more episodes is already saved in the current Spotify user’s library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference/#endpoint-check-users-saved-episodes
///
///
Task> CheckEpisodes(LibraryCheckEpisodesRequest request, CancellationToken cancel = default);
///
/// Get a list of the songs saved in the current Spotify user’s ‘Your Music’ library.
///
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-tracks
///
///
Task> GetTracks(CancellationToken cancel = default);
///
/// Get a list of the songs saved in the current Spotify user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-tracks
///
///
Task> GetTracks(LibraryTracksRequest request, CancellationToken cancel = default);
///
/// Get a list of the albums saved in the current Spotify user’s ‘Your Music’ library.
///
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-albums
///
///
Task> GetAlbums(CancellationToken cancel = default);
///
/// Get a list of the albums saved in the current Spotify user’s ‘Your Music’ library.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-albums
///
///
Task> GetAlbums(LibraryAlbumsRequest request, CancellationToken cancel = default);
///
/// Get a list of shows saved in the current Spotify user’s library.
/// Optional parameters can be used to limit the number of shows returned.
///
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-shows
///
///
Task> GetShows(CancellationToken cancel = default);
///
/// Get a list of shows saved in the current Spotify user’s library.
/// Optional parameters can be used to limit the number of shows returned.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-users-saved-shows
///
///
Task> GetShows(LibraryShowsRequest request, CancellationToken cancel = default);
///
/// Get a list of episodes saved in the current Spotify user’s library.
/// Optional parameters can be used to limit the number of shows returned.
///
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference/#endpoint-get-users-saved-episodes
///
///
Task> GetEpisodes(CancellationToken cancel = default);
///
/// Get a list of episodes saved in the current Spotify user’s library.
/// Optional parameters can be used to limit the number of shows returned.
///
/// The request-model which contains required and optional parameters.
/// The cancellation-token to allow to cancel the request.
///
/// https://developer.spotify.com/documentation/web-api/reference/#endpoint-get-users-saved-episodes
///
///
Task> GetEpisodes(LibraryEpisodesRequest request, CancellationToken cancel = default);
}
}