@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias JobSearchResult

    type JobSearchResult = {
        customHeaders: { [key: string]: string };
        deadline?: string | null;
        deniedReason?: string | null;
        elementId: ElementId;
        elementInstanceKey: ElementInstanceKey;
        endTime?: string;
        errorCode?: string | null;
        errorMessage?: string | null;
        hasFailedWithRetriesLeft?: boolean;
        isDenied?: boolean | null;
        jobKey: JobKey;
        kind: JobKindEnum;
        listenerEventType: JobListenerEventTypeEnum;
        processDefinitionId: ProcessDefinitionId;
        processDefinitionKey: ProcessDefinitionKey;
        processInstanceKey: ProcessInstanceKey;
        retries: number;
        state: JobStateEnum;
        tenantId: TenantId;
        type: string;
        worker: string;
    }
    Index

    Properties

    customHeaders: { [key: string]: string }

    A set of custom headers defined during modelling.

    deadline?: string | null

    If the job has been activated, when it will next be available to be activated.

    deniedReason?: string | null

    The reason provided by the user task listener for denying the work.

    elementId: ElementId

    The element ID associated with the job.

    elementInstanceKey: ElementInstanceKey

    The element instance key associated with the job.

    endTime?: string

    When the job ended.

    errorCode?: string | null

    The error code provided for a failed job.

    errorMessage?: string | null

    The error message that provides additional context for a failed job.

    hasFailedWithRetriesLeft?: boolean

    Indicates whether the job has failed with retries left.

    isDenied?: boolean | null

    Indicates whether the user task listener denies the work.

    jobKey: JobKey

    The key, a unique identifier for the job.

    listenerEventType: JobListenerEventTypeEnum
    processDefinitionId: ProcessDefinitionId

    The process definition ID associated with the job.

    processDefinitionKey: ProcessDefinitionKey

    The process definition key associated with the job.

    processInstanceKey: ProcessInstanceKey

    The process instance key associated with the job.

    retries: number

    The amount of retries left to this job.

    tenantId: TenantId
    type: string

    The type of the job.

    worker: string

    The name of the worker of this job.