mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 04:20:46 +00:00
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 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.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
#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; }
|
|
}
|
|
} |