Type Alias OrchRunBase

type OrchRunBase = {
    endedAt?: string;
    executedAs?: string;
    id: string;
    startedAt?: string;
    status: "RUNNING" | "SUCCEEDED" | "FAILED";
    triggeredBy: string;
    workerId: string;
    workerType: string;
}
Index

Properties

endedAt?: string

The UTC timestamp when the task run ended.

executedAs?: string
id: string
startedAt?: string
status: "RUNNING" | "SUCCEEDED" | "FAILED"
triggeredBy: string
workerId: string
workerType: string