Metadata of the execution of the task

interface MetaData {
    $meta?: MetaData[];
    cancelledAt?: string;
    completedAt?: string;
    createdAt: string;
    duration?: number;
    executedAt?: string;
    failedAt?: string;
    priority: number;
    reason?: string;
    status: TaskState;
    taskId: string;
    uuid: string;
    weight: number;
}

Properties

$meta?: MetaData[]

Additional metadata objects, store the metadata information from related tasks in a sequence or group

cancelledAt?: string

Date when the task was cancelled in ISO format

completedAt?: string

Date when the task was completed in ISO format

createdAt: string

Date when the task was created

duration?: number

Duration of the task in milliseconds

executedAt?: string

Date when the task was executed in ISO format

failedAt?: string

Date when the task was failed in ISO format

priority: number

Task priority

reason?: string

Reason of failure or cancellation

status: TaskState

Status of the task

taskId: string

Task identifier, defined by the user

uuid: string

Unique task identification, unique for each task

weight: number

Task weight