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

50 lines
1.3 KiB
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class UnfollowRequest : RequestParams
{
2020-05-28 15:30:17 +01:00
/// <summary>
///
/// </summary>
/// <param name="type">The ID type: either artist or user.</param>
/// <param name="ids">
/// A comma-separated list of the artist or the user Spotify IDs. F
/// or example: ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q.
/// A maximum of 50 IDs can be sent in one request.
/// </param>
public UnfollowRequest(Type type, IList<string> ids)
{
Ensure.ArgumentNotNull(type, nameof(type));
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
TypeParam = type;
Ids = ids;
}
2020-05-28 15:30:17 +01:00
/// <summary>
/// The ID type: either artist or user.
/// </summary>
/// <value></value>
2020-05-04 22:02:53 +01:00
[QueryParam("type")]
public Type TypeParam { get; }
2020-05-04 22:02:53 +01:00
2020-05-28 15:30:17 +01:00
/// <summary>
/// A comma-separated list of the artist or the user Spotify IDs. F
/// or example: ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q.
/// A maximum of 50 IDs can be sent in one request.
/// </summary>
/// <value></value>
2020-05-04 22:02:53 +01:00
[BodyParam("ids")]
public IList<string> Ids { get; }
2020-05-04 22:02:53 +01:00
public enum Type
2020-05-04 22:02:53 +01:00
{
[String("artist")]
Artist,
[String("user")]
User
}
}
}
2020-05-25 17:00:38 +01:00