Files
plexjs/docs/sdk/models/operations/setting.md
2024-09-08 03:06:14 +00:00

1.9 KiB
Raw Blame History

Setting

Example Usage

import { Setting } from "@lukehagar/plexjs/sdk/models/operations";

let value: Setting = {
    id: "EnableDatabaseTrace",
    label: "",
    summary: "",
    type: "bool",
    default: false,
    value: false,
    hidden: true,
    advanced: false,
    group: "",
    enumValues: "1:admin only|2:everyone",
};

Fields

Field Type Required Description Example
id string N/A EnableDatabaseTrace
label string N/A
summary string N/A
type string N/A bool
default boolean N/A false
value boolean N/A false
hidden boolean N/A true
advanced boolean N/A false
group string N/A
enumValues string N/A 1:admin only|2:everyone