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

    Type Alias UserTaskResult

    type UserTaskResult = {
        assignee: string | null;
        candidateGroups: string[];
        candidateUsers: string[];
        completionDate: string | null;
        creationDate: string;
        customHeaders: { [key: string]: string };
        dueDate: string | null;
        elementId: ElementId;
        elementInstanceKey: ElementInstanceKey;
        externalFormReference: string | null;
        followUpDate: string | null;
        formKey: FormKey | null;
        name: string | null;
        priority: number;
        processDefinitionId: ProcessDefinitionId;
        processDefinitionKey: ProcessDefinitionKey;
        processDefinitionVersion: number;
        processInstanceKey: ProcessInstanceKey;
        processName: string | null;
        rootProcessInstanceKey: ProcessInstanceKey | null;
        state: UserTaskStateEnum;
        tags: TagSet;
        tenantId: TenantId;
        userTaskKey: UserTaskKey;
    }
    Index

    Properties

    assignee: string | null

    The assignee of the user task.

    candidateGroups: string[]

    The candidate groups for this user task.

    candidateUsers: string[]

    The candidate users for this user task.

    completionDate: string | null

    The completion date of a user task.

    creationDate: string

    The creation date of a user task.

    customHeaders: { [key: string]: string }

    Custom headers for the user task.

    dueDate: string | null

    The due date of a user task.

    elementId: ElementId

    The element ID of the user task.

    elementInstanceKey: ElementInstanceKey

    The key of the element instance.

    externalFormReference: string | null

    The external form reference.

    followUpDate: string | null

    The follow date of a user task.

    formKey: FormKey | null

    The key of the form.

    name: string | null

    The name for this user task.

    priority: number

    The priority of a user task. The higher the value the higher the priority.

    processDefinitionId: ProcessDefinitionId

    The ID of the process definition.

    processDefinitionKey: ProcessDefinitionKey

    The key of the process definition.

    processDefinitionVersion: number

    The version of the process definition.

    processInstanceKey: ProcessInstanceKey

    The key of the process instance.

    processName: string | null

    The name of the process definition. This is null if the process has no name defined.

    rootProcessInstanceKey: ProcessInstanceKey | null

    The key of the root process instance. The root process instance is the top-level ancestor in the process instance hierarchy. This field is only present for data belonging to process instance hierarchies created in version 8.9 or later.

    tags: TagSet
    tenantId: TenantId
    userTaskKey: UserTaskKey

    The key of the user task.