output
    Preparing search index...

    Interface WorkflowEndHookPayload

    Payload passed to the onWorkflowEnd handler when a workflow run completes successfully.

    interface WorkflowEndHookPayload {
        duration: number;
        id: string;
        name: string;
    }
    Index

    Properties

    Properties

    duration: number

    Duration of the workflow run in milliseconds.

    id: string

    Identifier of the workflow run.

    name: string

    Name of the workflow.