@servicenow/sdk - v4.7.0
    Preparing search index...

    Interface UserPreference

    interface UserPreference {
        $id: string | number | ExplicitKey<string>;
        $meta?: { installMethod?: "first install" | "demo" | "once" };
        description?: string;
        name: string;
        system?: boolean;
        type:
            | "string"
            | "boolean"
            | "color"
            | "image"
            | "integer"
            | "password"
            | "password2"
            | "date_format"
            | "time_format"
            | "choicelist"
            | "uploaded_image"
            | "timezone"
            | "short_string";
        value: string
        | number
        | boolean;
    }
    Index

    Properties

    $id: string | number | ExplicitKey<string>
    $meta?: { installMethod?: "first install" | "demo" | "once" }

    Type Declaration

    • OptionalinstallMethod?: "first install" | "demo" | "once"

      Map a record to an output folder that loads only in specific circumstances. 'first install' -> 'unload' (only loaded when plugin is first registered), 'demo' -> 'unload.demo' (only loaded when demo data is loaded), 'once' -> 'apply_once' (scripts that are only applied once)

    description?: string

    Short description of the feature or functionality

    name: string

    Name of the feature or functionality

    system?: boolean

    Whether this record indicates the system-wide default

    type:
        | "string"
        | "boolean"
        | "color"
        | "image"
        | "integer"
        | "password"
        | "password2"
        | "date_format"
        | "time_format"
        | "choicelist"
        | "uploaded_image"
        | "timezone"
        | "short_string"

    The data type of entry accepted for the value

    value: string | number | boolean

    Current setting for this record