//------------------------------------------------------------------------------ // // 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; public class Setting { [JsonProperty("id")] public string? Id { get; set; } [JsonProperty("label")] public string? Label { get; set; } [JsonProperty("summary")] public string? Summary { get; set; } [JsonProperty("type")] public string? Type { get; set; } [JsonProperty("default")] public bool? Default { get; set; } [JsonProperty("value")] public bool? Value { get; set; } [JsonProperty("hidden")] public bool? Hidden { get; set; } [JsonProperty("advanced")] public bool? Advanced { get; set; } [JsonProperty("group")] public string? Group { get; set; } [JsonProperty("enumValues")] public string? EnumValues { get; set; } } }