interface StatusSchema {
    createdTime: number;
    errorMessage?: string;
    startTime: number;
    status: JobStatus;
    statusTime: number;
}

Properties

createdTime: number

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

errorMessage?: string

If the job failed, some more information about the error cause.

null
startTime: number

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

status: JobStatus

The status of the job.

statusTime: number

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.