using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class PlaylistReplaceItemsRequest : RequestParams
{
///
///
///
///
/// A comma-separated list of Spotify URIs to set, can be track or episode URIs.
/// A maximum of 100 items can be set in one request.
///
public PlaylistReplaceItemsRequest(List uris)
{
Ensure.ArgumentNotNull(uris, nameof(uris));
Uris = uris;
}
///
/// A comma-separated list of Spotify URIs to set, can be track or episode URIs.
/// A maximum of 100 items can be set in one request.
///
///
[BodyParam("uris")]
public IList Uris { get; }
}
}