//------------------------------------------------------------------------------ // // 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.Utils; using Newtonsoft.Json; using System; /// /// 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
/// ///
///
public enum Status { [JsonProperty("deciding")] Deciding, [JsonProperty("waiting")] Waiting, [JsonProperty("processing")] Processing, [JsonProperty("done")] Done, [JsonProperty("error")] Error, } public static class StatusExtension { public static string Value(this Status value) { return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString(); } public static Status ToEnum(this string value) { foreach(var field in typeof(Status).GetFields()) { var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false); if (attributes.Length == 0) { continue; } var attribute = attributes[0] as JsonPropertyAttribute; if (attribute != null && attribute.PropertyName == value) { var enumVal = field.GetValue(null); if (enumVal is Status) { return (Status)enumVal; } } } throw new Exception($"Unknown value {value} for enum Status"); } } }