@servicenow/sdk - v4.7.0
    Preparing search index...
    • Creates a system property (sys_properties).

      Type Parameters

      • const T extends
            | "string"
            | "boolean"
            | "color"
            | "image"
            | "integer"
            | "password"
            | "password2"
            | "date_format"
            | "time_format"
            | "choicelist"
            | "uploaded_image"
            | "timezone"
            | "short_string"

      Parameters

      • config: Property<T>

        an object containing the following properties:

        • name - name of the property
        • choices? - comma-separated values for a choice list
        • description? - a brief, descriptive phrase describing the function of the property
        • ignoreCache? - determines whether to flush this property's value from all other server-side caches
        • isPrivate? - if true, exclude this property from being imported via update sets
        • roles? - the roles that have access to this property
        • type? - data type for the property
        • value? - the desired value for the property

      Returns Property<T>