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

32 lines
722 B
C#
Raw Normal View History

2020-05-03 00:00:35 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class PlaylistGetItemsRequest : RequestParams
{
2020-05-03 08:06:28 +01:00
public PlaylistGetItemsRequest()
{
AdditionalTypes = new List<string>() { "track", "episode" };
}
2020-05-03 00:00:35 +01:00
[QueryParam("fields")]
public List<string> Fields { get; set; }
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
[QueryParam("market")]
public string Market { get; set; }
2020-05-03 08:06:28 +01:00
/// <summary>
/// This is set to `"track", "episode"` by default.
/// </summary>
/// <value></value>
2020-05-03 00:00:35 +01:00
[QueryParam("additional_types")]
public List<string> AdditionalTypes { get; set; }
}
}