Spotify.NET/SpotifyAPI.Web/Models/Request/PlaylistCurrentUsersRequest.cs
Jonas Dellinger 7445d3ca0e 📘 More docs! #451
2020-05-31 00:11:05 +02:00

22 lines
599 B
C#

namespace SpotifyAPI.Web
{
public class PlaylistCurrentUsersRequest : RequestParams
{
/// <summary>
/// The maximum number of playlists to return. Default: 20. Minimum: 1. Maximum: 50.
/// </summary>
/// <value></value>
[QueryParam("limit")]
public int? Limit { get; set; }
/// <summary>
/// The index of the first playlist to return.
/// Default: 0 (the first object). Maximum offset: 100.000. Use with limit to get the next set of playlists.
/// </summary>
/// <value></value>
[QueryParam("offset")]
public int? Offset { get; set; }
}
}