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