mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
67 lines
2.8 KiB
C#
67 lines
2.8 KiB
C#
using System.Threading.Tasks;
|
||
|
||
namespace SpotifyAPI.Web
|
||
{
|
||
/// <summary>
|
||
/// Endpoints for retrieving information about one or more shows from the Spotify catalog.
|
||
/// </summary>
|
||
public interface IShowsClient
|
||
{
|
||
/// <summary>
|
||
/// Get Spotify catalog information for a single show identified by its unique Spotify ID.
|
||
/// </summary>
|
||
/// <param name="showId">The Spotify ID for the show.</param>
|
||
/// <remarks>
|
||
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-a-show
|
||
/// </remarks>
|
||
/// <returns></returns>
|
||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
||
Task<FullShow> Get(string showId);
|
||
|
||
/// <summary>
|
||
/// Get Spotify catalog information for a single show identified by its unique Spotify ID.
|
||
/// </summary>
|
||
/// <param name="showId">The Spotify ID for the show.</param>
|
||
/// <param name="request">The request-model which contains required and optional parameters.</param>
|
||
/// <remarks>
|
||
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-a-show
|
||
/// </remarks>
|
||
/// <returns></returns>
|
||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
||
Task<FullShow> Get(string showId, ShowRequest request);
|
||
|
||
/// <summary>
|
||
/// Get Spotify catalog information for several shows based on their Spotify IDs.
|
||
/// </summary>
|
||
/// <param name="request">The request-model which contains required and optional parameters.</param>
|
||
/// <remarks>
|
||
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-multiple-shows
|
||
/// </remarks>
|
||
/// <returns></returns>
|
||
Task<ShowsResponse> GetSeveral(ShowsRequest request);
|
||
|
||
/// <summary>
|
||
/// Get Spotify catalog information about an show’s episodes.
|
||
/// Optional parameters can be used to limit the number of episodes returned.
|
||
/// </summary>
|
||
/// <param name="showId">The Spotify ID for the show.</param>
|
||
/// <remarks>
|
||
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-a-shows-episodes
|
||
/// </remarks>
|
||
/// <returns></returns>
|
||
Task<Paging<SimpleEpisode>> GetEpisodes(string showId);
|
||
|
||
/// <summary>
|
||
/// Get Spotify catalog information about an show’s episodes.
|
||
/// Optional parameters can be used to limit the number of episodes returned.
|
||
/// </summary>
|
||
/// <param name="showId">The Spotify ID for the show.</param>
|
||
/// <param name="request">The request-model which contains required and optional parameters.</param>
|
||
/// <remarks>
|
||
/// https://developer.spotify.com/documentation/web-api/reference-beta/#endpoint-get-a-shows-episodes
|
||
/// </remarks>
|
||
/// <returns></returns>
|
||
Task<Paging<SimpleEpisode>> GetEpisodes(string showId, ShowEpisodesRequest request);
|
||
}
|
||
}
|