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

43 lines
981 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
namespace SpotifyAPI.Web
{
public class FollowOfCurrentUserRequest : RequestParams
{
2020-05-28 15:30:17 +01:00
/// <summary>
/// The ID type: currently only artist is supported.
/// </summary>
/// <param name="type"></param>
public FollowOfCurrentUserRequest(Type type = Type.Artist)
2020-05-04 22:02:53 +01:00
{
TypeParam = type;
2020-05-04 22:02:53 +01:00
}
2020-05-28 15:30:17 +01:00
/// <summary>
/// The ID type: currently only artist is supported.
/// </summary>
/// <value></value>
2020-05-04 22:02:53 +01:00
[QueryParam("type")]
public Type TypeParam { get; set; }
2020-05-04 22:02:53 +01:00
2020-05-28 15:30:17 +01:00
/// <summary>
/// The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
/// </summary>
/// <value></value>
2020-05-04 22:02:53 +01:00
[QueryParam("limit")]
public int? Limit { get; set; }
2020-05-28 15:30:17 +01:00
/// <summary>
/// The last artist ID retrieved from the previous request.
/// </summary>
/// <value></value>
2020-05-04 22:02:53 +01:00
[QueryParam("after")]
2020-05-25 17:00:38 +01:00
public string? After { get; set; }
2020-05-04 22:02:53 +01:00
public enum Type
2020-05-04 22:02:53 +01:00
{
[String("artist")]
Artist
}
}
}
2020-05-25 17:00:38 +01:00