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

    Type Alias UserTaskProperties

    Contains properties of a user task.

    type UserTaskProperties = {
        action?: string;
        assignee?: string | null;
        candidateGroups?: string[];
        candidateUsers?: string[];
        changedAttributes?: string[];
        dueDate?: string | null;
        followUpDate?: string | null;
        formKey?: FormKey;
        priority?: number | null;
        userTaskKey?: UserTaskKey | null;
    }
    Index

    Properties

    action?: string

    The action performed on the user task.

    assignee?: string | null

    The user assigned to the task.

    candidateGroups?: string[]

    The groups eligible to claim the task.

    candidateUsers?: string[]

    The users eligible to claim the task.

    changedAttributes?: string[]

    The attributes that were changed in the task.

    dueDate?: string | null

    The due date of the user task in ISO 8601 format.

    followUpDate?: string | null

    The follow-up date of the user task in ISO 8601 format.

    formKey?: FormKey

    The key of the form associated with the user task.

    priority?: number | null

    The priority of the user task.

    userTaskKey?: UserTaskKey | null

    The unique key identifying the user task.