@servicenow/sdk - v4.7.0
    Preparing search index...
    type FlowStageConfig = {
        alwaysShow?: boolean;
        duration?: Duration;
        label: string;
        states?: FlowStageStates;
        value: string;
    }
    Index

    Properties

    alwaysShow?: boolean

    When true, this stage always appears in execution details even when not active. Defaults to false.

    duration?: Duration

    Expected duration for this stage, using the standard Duration type. Stored as an offset from 1970-01-01 00:00:00 UTC. Defaults to zero duration when omitted (the stage tracker uses the platform's display default).

    `Duration({ days: 1, hours: 4 })`1 day and 4 hours
    
    label: string

    Display label shown in flow execution details.

    Custom display labels for each execution state. Platform defaults are used for any omitted state.

    value: string

    Internal identifier for this stage. Used as the coalesce key alongside the parent flow.