Type Alias OutputListItem

type OutputListItem = {
    cycleSelections?: QSelection[];
    exportErrors?: ExportErrors;
    location?: string;
    outputId?: string;
    sizeBytes?: number;
    status?:
        | "queued"
        | "processing"
        | "done"
        | "failed"
        | "aborted"
        | "aborting";
    traceId?: string;
}
Index

Properties

cycleSelections?: QSelection[]
exportErrors?: ExportErrors

Errors occured during report generation.

location?: string

Location to download the generated report file.

outputId?: string

The output ID

sizeBytes?: number

output size in bytes

status?: "queued" | "processing" | "done" | "failed" | "aborted" | "aborting"

Status of the requested report.

traceId?: string