interface QueryTasksResponse {
    items: {
        elementInstanceKey: string;
        formKey: string;
        processDefinitionKey: string;
        processInstanceKey: string;
        userTaskKey: string;
    }[];
    page: QueryResponsePagination;
}

Properties

Properties

items: {
    elementInstanceKey: string;
    formKey: string;
    processDefinitionKey: string;
    processInstanceKey: string;
    userTaskKey: string;
}[]

Type declaration

  • elementInstanceKey: string

    The key of the element instance.

  • formKey: string

    The key of the form.

  • processDefinitionKey: string

    The key of the process definition.

  • processInstanceKey: string

    The key of the process instance.

  • userTaskKey: string

    The key of the user task.

Generated using TypeDoc