Spotify.NET/SpotifyAPI.Web/Models/Request/AlbumsRequest.cs

35 lines
893 B
C#
Raw Normal View History

2020-05-07 21:33:29 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class AlbumsRequest : RequestParams
{
2020-05-28 15:30:17 +01:00
/// <summary>
/// AlbumsRequest
/// </summary>
/// <param name="ids">A comma-separated list of the Spotify IDs for the albums. Maximum: 20 IDs.</param>
2020-05-07 21:33:29 +01:00
public AlbumsRequest(IList<string> ids)
{
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
Ids = ids;
}
2020-05-28 15:30:17 +01:00
/// <summary>
/// A comma-separated list of the Spotify IDs for the albums. Maximum: 20 IDs.
/// </summary>
/// <value></value>
2020-05-07 21:33:29 +01:00
[QueryParam("ids")]
public IList<string> Ids { get; }
2020-05-28 15:30:17 +01:00
/// <summary>
/// An ISO 3166-1 alpha-2 country code or the string from_token.
/// Provide this parameter if you want to apply Track Relinking.
/// </summary>
/// <value></value>
2020-05-07 21:33:29 +01:00
[QueryParam("market")]
2020-05-25 17:00:38 +01:00
public string? Market { get; set; }
2020-05-07 21:33:29 +01:00
}
}
2020-05-25 17:00:38 +01:00