namespace SpotifyAPI.Web { public class PlayerSkipPreviousRequest : RequestParams { /// /// 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; } } }