namespace SpotifyAPI.Web
{
public class PlayerShuffleRequest : RequestParams
{
///
///
///
/// true : Shuffle user’s playback false : Do not shuffle user’s playback.
public PlayerShuffleRequest(bool state)
{
State = state;
}
///
/// true : Shuffle user’s playback false : Do not shuffle user’s playback.
///
///
[QueryParam("state")]
public bool State { get; }
///
/// The id of the device this command is targeting. If not supplied,
/// the user’s currently active device is the target.
///
///
[QueryParam("device_id")]
public string? DeviceId { get; set; }
}
}