Type Alias RunListObject

type RunListObject = {
    context?:
        | "test_run"
        | "editor"
        | "detail"
        | "api_sync"
        | "api_async"
        | "webhook"
        | "lookup";
    createdAt?: string;
    duration?: number;
    error?: unknown;
    executedById?: string;
    id?: string;
    isArchived?: boolean;
    isTestRun?: boolean;
    ownerId?: string;
    scheduledStartTime?: string;
    spaceId?: string;
    startTime?: string;
    status?: | "failed"
    | "finished"
    | "finished with warnings"
    | "must stop"
    | "not started"
    | "running"
    | "starting"
    | "stopped";
    stopTime?: string;
    title?: string;
    updatedAt?: string;
}
Index

Properties

context?:
    | "test_run"
    | "editor"
    | "detail"
    | "api_sync"
    | "api_async"
    | "webhook"
    | "lookup"
createdAt?: string
duration?: number

Duration of the run, indicated in seconds. Calculated from start and stop times

error?: unknown
executedById?: string
id?: string
isArchived?: boolean
isTestRun?: boolean
ownerId?: string
scheduledStartTime?: string
spaceId?: string
startTime?: string
status?:
    | "failed"
    | "finished"
    | "finished with warnings"
    | "must stop"
    | "not started"
    | "running"
    | "starting"
    | "stopped"
stopTime?: string
title?: string
updatedAt?: string