interface WorkflowExecution {
    children?: WorkflowExecution[];
    close_time: string;
    duration_ms: number;
    events: WorkflowExecutionEvent[];
    result: any;
    start_time: string;
    status: WorkflowExecutionStatus;
    summary: WorkflowExecutionSummary;
    task_queue: string;
    workflow_id: string;
    workflow_type: string;
}

Properties

children?: WorkflowExecution[]
close_time: string
duration_ms: number
result: any
start_time: string
task_queue: string
workflow_id: string
workflow_type: string