@camunda8/sdk
    Preparing search index...

    Interface DecisionInstanceDetails

    interface DecisionInstanceDetails {
        decisionDefinitionId: string;
        decisionDefinitionKey: string;
        decisionDefinitionName: string;
        decisionDefinitionVersion: number;
        decisionInstanceId: string;
        decisionInstanceKey: string;
        decisionType:
            | "UNKNOWN"
            | "UNSPECIFIED"
            | "DECISION_TABLE"
            | "LITERAL_EXPRESSION";
        evaluationDate: string;
        evaluationFailure?: string;
        processDefinitionKey: string;
        processInstanceKey: string;
        result: string;
        state: "FAILED"
        | "EVALUATED"
        | "UNKNOWN"
        | "UNSPECIFIED";
        tenantId: string;
    }
    Index

    Properties

    decisionDefinitionId: string

    The decision definition ID.

    decisionDefinitionKey: string

    The decision definition key.

    decisionDefinitionName: string

    The decision definition name.

    decisionDefinitionVersion: number

    The decision definition version.

    decisionInstanceId: string

    The ID of the decision instance.

    decisionInstanceKey: string

    The decision instance key.

    decisionType:
        | "UNKNOWN"
        | "UNSPECIFIED"
        | "DECISION_TABLE"
        | "LITERAL_EXPRESSION"

    The decision type.

    evaluationDate: string

    The evaluation date.

    evaluationFailure?: string

    The evaluation failure message, if any.

    processDefinitionKey: string

    The process definition key associated to this decision instance.

    processInstanceKey: string

    The process instance key associated to this decision instance.

    result: string

    The result of the decision evaluation.

    state: "FAILED" | "EVALUATED" | "UNKNOWN" | "UNSPECIFIED"

    The state of the decision instance.

    tenantId: string

    The tenant ID.