2020-05-07 17:03:20 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class PlayerCurrentlyPlayingRequest : RequestParams
|
|
|
|
{
|
2020-05-30 22:20:42 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A comma-separated list of item types that your client supports besides the default track type.
|
|
|
|
/// Valid types are: track and episode. An unsupported type in the response is expected to be represented
|
|
|
|
/// as null value in the item field. Note: This parameter was introduced to allow existing clients to
|
|
|
|
/// maintain their current behaviour and might be deprecated in the future. In addition to providing
|
|
|
|
/// this parameter, make sure that your client properly handles cases of new types in the future by
|
|
|
|
/// checking against the currently_playing_type field. Defaults to AdditionalTypes.All
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="types"></param>
|
|
|
|
public PlayerCurrentlyPlayingRequest(AdditionalTypes types = AdditionalTypes.All)
|
2020-05-07 17:03:20 +01:00
|
|
|
{
|
|
|
|
Ensure.ArgumentNotNull(types, nameof(types));
|
|
|
|
|
|
|
|
AdditionalTypesParam = types;
|
|
|
|
}
|
|
|
|
|
2020-05-30 22:20:42 +01:00
|
|
|
/// <summary>
|
|
|
|
/// An ISO 3166-1 alpha-2 country code or the string from_token.
|
|
|
|
/// Provide this parameter if you want to apply Track Relinking.
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
2020-05-07 17:03:20 +01:00
|
|
|
[QueryParam("market")]
|
2020-05-30 22:20:42 +01:00
|
|
|
public string? Market { get; set; }
|
2020-05-07 17:03:20 +01:00
|
|
|
|
|
|
|
/// <summary>
|
2020-05-30 22:20:42 +01:00
|
|
|
/// A comma-separated list of item types that your client supports besides the default track type.
|
|
|
|
/// Valid types are: track and episode. An unsupported type in the response is expected to be represented
|
|
|
|
/// as null value in the item field. Note: This parameter was introduced to allow existing clients to
|
|
|
|
/// maintain their current behaviour and might be deprecated in the future. In addition to providing
|
|
|
|
/// this parameter, make sure that your client properly handles cases of new types in the future by
|
|
|
|
/// checking against the currently_playing_type field. Defaults to AdditionalTypes.All
|
2020-05-07 17:03:20 +01:00
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
|
|
|
[QueryParam("additional_types")]
|
|
|
|
public AdditionalTypes AdditionalTypesParam { get; }
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
public enum AdditionalTypes
|
|
|
|
{
|
|
|
|
[String("track")]
|
|
|
|
Track = 1,
|
|
|
|
[String("episode")]
|
|
|
|
Episode = 2,
|
|
|
|
All = Track | Episode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|