using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class LibraryCheckEpisodesRequest : RequestParams
{
///
///
///
/// A comma-separated list of the Spotify IDs for the shows. Maximum: 50 ids.
public LibraryCheckEpisodesRequest(IList ids)
{
Ensure.ArgumentNotNull(ids, nameof(ids));
Ids = ids;
}
///
/// A comma-separated list of the Spotify IDs for the shows. Maximum: 50 ids.
///
///
[QueryParam("ids")]
public IList Ids { get; }
}
}