//------------------------------------------------------------------------------ // // 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 TranscodeJob { [JsonProperty("generatorID")] public long? GeneratorID { get; set; } [JsonProperty("key")] public string? Key { get; set; } [JsonProperty("progress")] public double? Progress { get; set; } [JsonProperty("ratingKey")] public string? RatingKey { get; set; } /// /// The number of seconds remaining in this job /// [JsonProperty("remaining")] public long? Remaining { get; set; } /// /// The size of the result so far /// [JsonProperty("size")] public long? Size { get; set; } /// /// The speed of the transcode; 1.0 means real-time /// [JsonProperty("speed")] public double? Speed { get; set; } /// /// The tag associated with the job. This could be the tag containing the optimizer settings. /// [JsonProperty("targetTagID")] public long? TargetTagID { get; set; } [JsonProperty("thumb")] public string? Thumb { get; set; } [JsonProperty("title")] public string? Title { get; set; } [JsonProperty("type")] public GetBackgroundTasksType? Type { get; set; } } }