2021-08-10 21:17:51 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
|
{
|
|
|
|
|
public class LibraryRemoveEpisodesRequest : RequestParams
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">
|
|
|
|
|
/// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library.
|
|
|
|
|
/// </param>
|
|
|
|
|
public LibraryRemoveEpisodesRequest(IList<string> ids)
|
|
|
|
|
{
|
|
|
|
|
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
|
|
|
|
|
|
|
|
|
|
Ids = ids;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value></value>
|
2022-11-27 12:07:50 +00:00
|
|
|
|
[QueryParam("ids")]
|
2021-08-10 21:17:51 +01:00
|
|
|
|
public IList<string> Ids { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|