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

    Type Alias PortalSettings

    PortalSettings:
        | PortalSettingsBase & {
            hideAttachment?: false;
            mandatoryAttachment: true;
        }
        | PortalSettingsBase & {
            hideAttachment?: boolean;
            mandatoryAttachment?: false;
        }

    Type representing portal settings and UI visibility configuration. When mandatoryAttachment is true, hideAttachment cannot be true.

    Type Declaration

    • PortalSettingsBase & { hideAttachment?: false; mandatoryAttachment: true }
      • OptionalhideAttachment?: false

        Whether attachments are hidden - cannot be true when mandatoryAttachment is true

      • mandatoryAttachment: true

        Whether mandatory attachments are required for the catalog item

    • PortalSettingsBase & { hideAttachment?: boolean; mandatoryAttachment?: false }
      • OptionalhideAttachment?: boolean

        Whether attachments are hidden for the catalog item

      • OptionalmandatoryAttachment?: false

        Whether mandatory attachments are required for the catalog item