using System; namespace SpotifyAPI.Web { public class ArtistsAlbumsRequest : RequestParams { /// /// A comma-separated list of keywords that will be used to filter the response. /// If not supplied, all album types will be returned. /// /// [QueryParam("include_groups")] public IncludeGroups? IncludeGroupsParam { get; set; } /// /// 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! /// /// [QueryParam("market")] public string? Market { get; set; } /// /// The desired language, consisting of an ISO 639-1 language code and an ISO 3166-1 alpha-2 country code, /// joined by an underscore. For example: es_MX, meaning "Spanish (Mexico)". /// Provide this parameter if you want the category strings returned in a particular language. /// Note that, if locale is not supplied, or if the specified language is not available, /// the category strings returned will be in the Spotify default language (American English). /// /// [QueryParam("locale")] public string? Locale { get; set; } /// /// The number of album objects to return. Default: 20. Minimum: 1. Maximum: 50. For example: limit=2 /// /// [QueryParam("limit")] public int? Limit { get; set; } /// /// 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. /// /// [QueryParam("offset")] public int? Offset { get; set; } [Flags] public enum IncludeGroups { [String("album")] Album = 1, [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1720")] [String("single")] Single = 2, [String("appears_on")] AppearsOn = 4, [String("compilation")] Compilation = 8, } } }