2020-05-03 08:06:28 +01:00
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class PlaylistCurrentUsersRequest : RequestParams
|
|
|
|
{
|
2020-05-30 23:11:05 +01:00
|
|
|
/// <summary>
|
|
|
|
/// The maximum number of playlists to return. Default: 20. Minimum: 1. Maximum: 50.
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
2020-05-03 08:06:28 +01:00
|
|
|
[QueryParam("limit")]
|
|
|
|
public int? Limit { get; set; }
|
|
|
|
|
2020-05-30 23:11:05 +01:00
|
|
|
/// <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>
|
2020-05-03 08:06:28 +01:00
|
|
|
[QueryParam("offset")]
|
|
|
|
public int? Offset { get; set; }
|
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|