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

    Type Alias UiAction<T>

    UiAction: Now.Internal.WithID<
        {
            actionName?: string;
            active?: boolean;
            client?: {
                isClient?: boolean;
                isUi11Compatible?: boolean;
                isUi16Compatible?: boolean;
                onClick?: string;
            };
            comments?: string;
            condition?: string;
            excludeFromViews?: string[];
            form?: {
                showButton?: boolean;
                showContextMenu?: boolean;
                showLink?: boolean;
                style?: "primary"
                | "destructive"
                | "unstyled";
            };
            hint?: string;
            includeInViews?: string[];
            isolateScript?: boolean;
            list?: {
                showBannerButton?: boolean;
                showButton?: boolean;
                showContextMenu?: boolean;
                showLink?: boolean;
                showListChoice?: boolean;
                showSaveWithFormButton?: boolean;
                style?: "primary"
                | "destructive"
                | "unstyled";
            };
            messages?: string[];
            name: string;
            order?: number;
            overrides?: string
            | Record<"sys_ui_action">;
            roles?: (string | Role)[];
            script?: string | ((current: any, ...params: any[]) => void);
            showInsert?: boolean;
            showMultipleUpdate?: boolean;
            showQuery?: boolean;
            showUpdate?: boolean;
            table: T;
            workspace?: {
                clientScriptV2?: string;
                isConfigurableWorkspace?: boolean;
                showFormButtonV2?: boolean;
                showFormMenuButtonV2?: boolean;
            };
        } & Now.Internal.Meta,
    >

    Type Parameters