using System; namespace SpotifyAPI.Web { public class PlayerCurrentPlaybackRequest : RequestParams { /// /// /// /// /// 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. /// public PlayerCurrentPlaybackRequest(AdditionalTypes types = AdditionalTypes.All) { Ensure.ArgumentNotNull(types, nameof(types)); AdditionalTypesParam = types; } [QueryParam("market")] public string? Market { get; set; } /// /// This is set to `"track", "episode"` by default. /// /// [QueryParam("additional_types")] public AdditionalTypes AdditionalTypesParam { get; } [Flags] public enum AdditionalTypes { [String("track")] Track = 1, [String("episode")] Episode = 2, All = Track | Episode } } }