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

    Interface FlowDefinition<V, S>

    interface FlowDefinition<
        V extends Record<string, FlowValueType>,
        S extends { [key: string]: FlowStageConfig } = {},
    > {
        $id: string | number | ExplicitKey<string>;
        $override?: Record<string, string | number | boolean>;
        description?: string;
        flowPriority?: "LOW" | "MEDIUM" | "HIGH";
        flowVariables?: V;
        name: string;
        protectionPolicy?: "" | "read";
        runAs?: "system" | "user";
        runWithRoles?: (string | Role)[];
        stages?: S;
    }

    Type Parameters

    Index

    Properties

    $id: string | number | ExplicitKey<string>
    $override?: Record<string, string | number | boolean>

    Set properties not directly supported by this API.

    description?: string
    flowPriority?: "LOW" | "MEDIUM" | "HIGH"
    flowVariables?: V
    name: string
    protectionPolicy?: "" | "read"
    runAs?: "system" | "user"
    runWithRoles?: (string | Role)[]
    stages?: S