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

    Interface FlowBodyParams<I, V, S>

    interface FlowBodyParams<
        I,
        V,
        S extends { [key: string]: FlowStageConfig } = {},
    > {
        flowVariables: V;
        stages: S;
        trigger: I;
    }

    Type Parameters

    Index

    Properties

    flowVariables: V
    stages: S

    Named stages declared in the flow config. Activate a stage via wfa.stage(params.stages.myStage).

    trigger: I