@servicenow/sdk - v4.7.0
    Preparing search index...
    ActionConfig: WithID<
        {
            access?: "public"
            | "package_private";
            annotation?: string;
            category?: string;
            description?: string;
            inputs: I;
            name: string;
            outputs: O;
            protectionPolicy?: "read" | "";
        } & OverrideProperties,
    >

    Defines the configuration structure for an action. This type is used by the Action function to specify the properties of an action.

    Type Parameters

    • I extends Record<string, FlowValueType>

      A record defining the input parameters for the action, where keys are input names and values are FlowValueType.

    • O extends Record<string, FlowValueType>

      A record defining the output parameters for the action, where keys are output names and values are FlowValueType.