interface UserTask {
    assignee?: string;
    candidateGroups?: string[];
    candidateUsers?: string[];
    completionDate?: string;
    creationDate: string;
    customHeaders: {
        [key: string]: string;
    };
    dueDate?: string;
    elementId: string;
    elementInstanceKey: string;
    externalFormReference?: string;
    followUpDate?: string;
    formKey?: string;
    name: string;
    priority: number;
    processDefinitionId: string;
    processDefinitionKey: string;
    processDefinitionVersion: number;
    processInstanceKey: string;
    state: "FAILED" | "COMPLETED" | "CANCELED" | "CREATED";
    tenantId: string;
    userTaskKey: string;
}

Properties

assignee?: string

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

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.

Type declaration

  • [key: string]: string
dueDate?: string

The due date of a user task.

elementId: string

The element ID of the user task.

elementInstanceKey: string

The key of the element instance.

externalFormReference?: string

The external form reference.

followUpDate?: string

The follow date of a user task.

formKey?: string

The key of the form.

name: string

The name for this user task.

priority: number

The priority of a user task. The higher the value the higher the priority. Possible values: <= 100. Default value: 50

processDefinitionId: string

The ID of the process definition.

processDefinitionKey: string

The key of the process definition.

processDefinitionVersion: number

The version of the process definition.

processInstanceKey: string

The key of the process instance.

state: "FAILED" | "COMPLETED" | "CANCELED" | "CREATED"

The state of the user task. Possible values: [CREATED, COMPLETED, CANCELED, FAILED]

tenantId: string

Tenant ID of this user task.

userTaskKey: string

The key of the user task.

Generated using TypeDoc