Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ExecutionStatus } from "./ExecutionStatus";
/**
* Execution summary - used for execution history list
*/
export type ExecutionSummary = {
/**
* Execution ID
*/
execution_id: string,
/**
* Workflow ID
*/
workflow_id: string,
/**
* Execution status
*/
status: ExecutionStatus,
/**
* Start time (millisecond timestamp)
*/
started_at: bigint,
/**
* Completion time (millisecond timestamp)
*/
completed_at: bigint | null,
/**
* Total number of tasks
*/
total_tasks: number,
/**
* Number of completed tasks
*/
completed_tasks: number,
/**
* Number of failed tasks
*/
failed_tasks: number, };
|