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

    Variable sp_css_includeConst

    sp_css_include: {
        allowWebServiceAccess: true;
        attributes: { synch_attachments: true; update_synch: true };
        audit: true;
        extends: "sys_metadata";
        label: "CSS Include";
        name: "sp_css_include";
        schema: {
            lazy_load: Typed<
                boolean,
                {
                    label: [
                        {
                            hint: "Lazy load css include";
                            label: "Lazy Load";
                            language: "en";
                            plural: "Lazy Loads";
                        },
                    ];
                },
            >;
            name: Typed<string, { label: "Name" }>;
            rtl_css_file_url: Typed<
                string
                | number,
                {
                    columnType: "url";
                    label: [
                        {
                            hint: "If provided, this CSS file will be used when language directionality is Right to left";
                            label: "RTL CSS file URL";
                            language: "en";
                            plural: "RTL CSS file URLs";
                        },
                    ];
                    maxLength: 1024;
                },
            >;
            source: Typed<
                "url"
                | "local",
                {
                    choices: {
                        local: { label: "Style Sheet"; sequence: 0 };
                        url: { label: "URL"; sequence: 1 };
                    };
                    default: "local";
                    dropdown: "dropdown_without_none";
                    label: "Source";
                },
            >;
            sp_css: Typed<
                | string
                | Record<"sp_css">
                | ExplicitKey<"sp_css">
                | TableBrand<"sp_css">,
                {
                    attributes: { encode_utf8: false };
                    cascadeRule: "delete";
                    label: "Style sheet";
                    referenceTable: "sp_css";
                },
            >;
            sys_id: Typed<
                string
                | number,
                { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
            >;
            url: Typed<
                string
                | number,
                { columnType: "url"; label: "CSS file URL"; maxLength: 1024 },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { synch_attachments: true; update_synch: true }
    • Readonlyaudit: true
    • Readonlyextends: "sys_metadata"
    • Readonlylabel: "CSS Include"
    • Readonlyname: "sp_css_include"
    • Readonlyschema: {
          lazy_load: Typed<
              boolean,
              {
                  label: [
                      {
                          hint: "Lazy load css include";
                          label: "Lazy Load";
                          language: "en";
                          plural: "Lazy Loads";
                      },
                  ];
              },
          >;
          name: Typed<string, { label: "Name" }>;
          rtl_css_file_url: Typed<
              string
              | number,
              {
                  columnType: "url";
                  label: [
                      {
                          hint: "If provided, this CSS file will be used when language directionality is Right to left";
                          label: "RTL CSS file URL";
                          language: "en";
                          plural: "RTL CSS file URLs";
                      },
                  ];
                  maxLength: 1024;
              },
          >;
          source: Typed<
              "url"
              | "local",
              {
                  choices: {
                      local: { label: "Style Sheet"; sequence: 0 };
                      url: { label: "URL"; sequence: 1 };
                  };
                  default: "local";
                  dropdown: "dropdown_without_none";
                  label: "Source";
              },
          >;
          sp_css: Typed<
              | string
              | Record<"sp_css">
              | ExplicitKey<"sp_css">
              | TableBrand<"sp_css">,
              {
                  attributes: { encode_utf8: false };
                  cascadeRule: "delete";
                  label: "Style sheet";
                  referenceTable: "sp_css";
              },
          >;
          sys_id: Typed<
              string
              | number,
              { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
          >;
          url: Typed<
              string
              | number,
              { columnType: "url"; label: "CSS file URL"; maxLength: 1024 },
          >;
      }