@camunda8/sdk
    Preparing search index...

    Interface ElementInstanceDetails

    interface ElementInstanceDetails {
        elementId: string;
        elementInstanceKey: string;
        elementName: string;
        endDate: string;
        hasIncident: boolean;
        incidentKey?: string;
        processDefinitionId: string;
        processDefinitionKey: string;
        processInstanceKey: string;
        startDate: string;
        state: "ACTIVE" | "COMPLETED" | "TERMINATED";
        tenantId: string;
        type:
            | "UNKNOWN"
            | "UNSPECIFIED"
            | "PROCESS"
            | "SUB_PROCESS"
            | "EVENT_SUB_PROCESS"
            | "START_EVENT"
            | "INTERMEDIATE_CATCH_EVENT"
            | "INTERMEDIATE_THROW_EVENT"
            | "BOUNDARY_EVENT"
            | "END_EVENT"
            | "SERVICE_TASK"
            | "RECEIVE_TASK"
            | "USER_TASK"
            | "MANUAL_TASK"
            | "TASK"
            | "EXCLUSIVE_GATEWAY"
            | "INCLUSIVE_GATEWAY"
            | "PARALLEL_GATEWAY"
            | "EVENT_BASED_GATEWAY"
            | "SEQUENCE_FLOW"
            | "MULTI_INSTANCE_BODY"
            | "CALL_ACTIVITY"
            | "BUSINESS_RULE_TASK"
            | "SCRIPT_TASK"
            | "SEND_TASK"
            | "AD_HOC_SUB_PROCESS";
    }
    Index

    Properties

    elementId: string

    The element ID for this element instance.

    elementInstanceKey: string

    The assigned key, which acts as a unique identifier for this element instance.

    elementName: string

    The element name for this element instance.

    endDate: string

    Date when element instance finished.

    hasIncident: boolean

    Shows whether this element instance has an incident. If true also an incidentKey is provided.

    incidentKey?: string

    Incident key associated with this element instance.

    processDefinitionId: string

    The process definition ID associated to this element instance.

    processDefinitionKey: string

    The process definition key associated to this element instance.

    processInstanceKey: string

    The process instance key associated to this element instance.

    startDate: string

    Date when element instance started.

    state: "ACTIVE" | "COMPLETED" | "TERMINATED"

    State of element instance as defined set of values.

    tenantId: string

    The tenant ID of the incident.

    type:
        | "UNKNOWN"
        | "UNSPECIFIED"
        | "PROCESS"
        | "SUB_PROCESS"
        | "EVENT_SUB_PROCESS"
        | "START_EVENT"
        | "INTERMEDIATE_CATCH_EVENT"
        | "INTERMEDIATE_THROW_EVENT"
        | "BOUNDARY_EVENT"
        | "END_EVENT"
        | "SERVICE_TASK"
        | "RECEIVE_TASK"
        | "USER_TASK"
        | "MANUAL_TASK"
        | "TASK"
        | "EXCLUSIVE_GATEWAY"
        | "INCLUSIVE_GATEWAY"
        | "PARALLEL_GATEWAY"
        | "EVENT_BASED_GATEWAY"
        | "SEQUENCE_FLOW"
        | "MULTI_INSTANCE_BODY"
        | "CALL_ACTIVITY"
        | "BUSINESS_RULE_TASK"
        | "SCRIPT_TASK"
        | "SEND_TASK"
        | "AD_HOC_SUB_PROCESS"

    Type of element as defined set of values.