interface Job {
    createdAt?: Date;
    id: string;
    jobDuration?: string;
    name: string;
    progressMessage?: string;
    resultDistribution?: string;
    sessionId: string;
    startedAt?: Date;
    status: JobStatus;
    tags?: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Time at which the job was created.

id: string

Unique ID of the job.

jobDuration?: string

Duration of the job, if the job is finished.

name: string

Job name.

progressMessage?: string

Last progress message, if the job has started.

resultDistribution?: string

Result of the job, if the job is finished.

sessionId: string

Session ID in which the job is executed.

startedAt?: Date

Time at which the job was started.

status: JobStatus

Job status.

tags?: string[]

Tags of the job.

updatedAt?: Date

Time at which the job was updated.