Files
plexcsharp/PlexAPI/Models/Requests/Setting.cs

48 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace PlexAPI.Models.Requests
{
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; }
}
}