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

    Variable sp_header_footerConst

    sp_header_footer: {
        allowUiActions: true;
        allowWebServiceAccess: true;
        attributes: { synch_attachments: true; update_synch: true };
        audit: true;
        extends: "sp_widget";
        label: "Header | Footer";
        name: "sp_header_footer";
        schema: {
            static: Typed<
                boolean,
                {
                    label: [
                        {
                            hint: "Static headers and footers do not refresh theme data on each page change - keep checked for a potential performance improvement";
                            label: "Static";
                            language: "en";
                            plural: "Statics";
                        },
                    ];
                },
            >;
            sys_id: Typed<
                string
                | number,
                { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowUiActions: true
    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { synch_attachments: true; update_synch: true }
    • Readonlyaudit: true
    • Readonlyextends: "sp_widget"
    • Readonlylabel: "Header | Footer"
    • Readonlyname: "sp_header_footer"
    • Readonlyschema: {
          static: Typed<
              boolean,
              {
                  label: [
                      {
                          hint: "Static headers and footers do not refresh theme data on each page change - keep checked for a potential performance improvement";
                          label: "Static";
                          language: "en";
                          plural: "Statics";
                      },
                  ];
              },
          >;
          sys_id: Typed<
              string
              | number,
              { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
          >;
      }