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

59 lines
1.7 KiB
C#
Raw Normal View History

2020-05-08 10:10:53 +01:00
using System;
namespace SpotifyAPI.Web
{
public class ArtistsAlbumsRequest : RequestParams
{
2020-05-28 15:30:17 +01:00
/// <summary>
/// A comma-separated list of keywords that will be used to filter the response.
/// If not supplied, all album types will be returned.
/// </summary>
/// <value></value>
2020-05-08 10:10:53 +01:00
[QueryParam("include_groups")]
public IncludeGroups? IncludeGroupsParam { get; set; }
2020-05-28 15:30:17 +01:00
/// <summary>
/// Synonym for country. An ISO 3166-1 alpha-2 country code or the string from_token.
/// Supply this parameter to limit the response to one particular geographical market.
/// For example, for albums available in Sweden: market=SE.
/// If not given, results will be returned for all markets and you are likely to get duplicate results per album,
/// one for each market in which the album is available!
/// </summary>
/// <value></value>
2020-05-08 10:10:53 +01:00
[QueryParam("market")]
2020-05-25 17:00:38 +01:00
public string? Market { get; set; }
2020-05-08 10:10:53 +01:00
2020-05-28 15:30:17 +01:00
/// <summary>
/// The number of album objects to return. Default: 20. Minimum: 1. Maximum: 50. For example: limit=2
/// </summary>
/// <value></value>
2020-05-08 10:10:53 +01:00
[QueryParam("limit")]
public int? Limit { get; set; }
2020-05-28 15:30:17 +01:00
/// <summary>
/// The index of the first album to return. Default: 0 (i.e., the first album). Use with limit to get the next set of albums.
/// </summary>
/// <value></value>
2020-05-08 10:10:53 +01:00
[QueryParam("offset")]
public int? Offset { get; set; }
[Flags]
public enum IncludeGroups
{
[String("album")]
Album = 1,
2020-05-08 10:10:53 +01:00
2020-05-12 15:35:59 +01:00
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720")]
2020-05-08 10:10:53 +01:00
[String("single")]
Single = 2,
2020-05-08 10:10:53 +01:00
[String("appears_on")]
AppearsOn = 4,
2020-05-08 10:10:53 +01:00
[String("compilation")]
Compilation = 8,
2020-05-08 10:10:53 +01:00
}
}
}
2020-05-25 17:00:38 +01:00