namespace SpotifyAPI.Web { public class FollowOfCurrentUserRequest : RequestParams { /// /// The ID type: currently only artist is supported. /// /// public FollowOfCurrentUserRequest(Type type = Type.Artist) { TypeParam = type; } /// /// The ID type: currently only artist is supported. /// /// [QueryParam("type")] public Type TypeParam { get; set; } /// /// The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. /// /// [QueryParam("limit")] public int? Limit { get; set; } /// /// The last artist ID retrieved from the previous request. /// /// [QueryParam("after")] public string? After { get; set; } public enum Type { [String("artist")] Artist } } }