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

    Variable sys_script_fixConst

    sys_script_fix: {
        extends: "sys_metadata";
        name: "sys_script_fix";
        schema: {
            before: Typed<boolean, { default: false }>;
            description: Typed<string, { maxLength: 4000 }>;
            name: Typed<string, { maxLength: 40 }>;
            record_for_rollback: Typed<boolean, { default: true }>;
            script: Typed<string | ScriptModule<Function>, {}>;
            unloadable: Typed<boolean, { default: false }>;
        };
    } = ...

    Type Declaration

    • Readonlyextends: "sys_metadata"
    • Readonlyname: "sys_script_fix"
    • Readonlyschema: {
          before: Typed<boolean, { default: false }>;
          description: Typed<string, { maxLength: 4000 }>;
          name: Typed<string, { maxLength: 40 }>;
          record_for_rollback: Typed<boolean, { default: true }>;
          script: Typed<string | ScriptModule<Function>, {}>;
          unloadable: Typed<boolean, { default: false }>;
      }