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

    Type Alias SubflowBodyParams<I, O, V, S>

    type SubflowBodyParams<
        I,
        O,
        V,
        S extends { [key: string]: FlowStageConfig } = {},
    > = {
        flowVariables: V;
        inputs: I;
        outputs: O;
        stages: S;
    }

    Type Parameters

    Index

    Properties

    flowVariables: V
    inputs: I
    outputs: O
    stages: S

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