using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class LibraryRemoveEpisodesRequest : RequestParams
{
///
///
///
///
/// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library.
///
public LibraryRemoveEpisodesRequest(IList ids)
{
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
Ids = ids;
}
///
/// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library.
///
///
[BodyParam("ids")]
public IList Ids { get; }
}
}