//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. // // Changes to this file may cause incorrect behavior and will be lost when // the code is regenerated. // //------------------------------------------------------------------------------ #nullable enable namespace LukeHagar.PlexAPI.SDK.Models.Requests { using LukeHagar.PlexAPI.SDK.Models.Requests; using LukeHagar.PlexAPI.SDK.Utils; using Newtonsoft.Json; public class DownloadQueue { [JsonProperty("id")] public long? Id { get; set; } [JsonProperty("itemCount")] public long? ItemCount { get; set; } /// /// The state of this queue
/// /// /// - deciding: At least one item is still being decided
/// - waiting: At least one item is waiting for transcode and none are currently transcoding
/// - processing: At least one item is being transcoded
/// - done: All items are available (or potentially expired)
/// - error: At least one item has encountered an error
/// ///
///
[JsonProperty("status")] public CreateDownloadQueueStatus? Status { get; set; } } }