@camunda8/sdk
    Preparing search index...

    Type Alias EvaluateDecisionRequest

    EvaluateDecisionRequest:
        | {
            decisionDefinitionId: string;
            decisionDefinitionKey?: never;
            tenantId?: string;
            variables: JSONDoc;
        }
        | {
            decisionDefinitionId?: never;
            decisionDefinitionKey: string;
            tenantId?: string;
            variables: JSONDoc;
        }

    Type declaration

    • {
          decisionDefinitionId: string;
          decisionDefinitionKey?: never;
          tenantId?: string;
          variables: JSONDoc;
      }
      • decisionDefinitionId: string

        The ID of the decision to be evaluated.

      • OptionaldecisionDefinitionKey?: never

        The unique key identifying the decision to be evaluated.

      • OptionaltenantId?: string

        The tenant ID of the decision.

      • variables: JSONDoc

        The message variables as JSON document.

    • {
          decisionDefinitionId?: never;
          decisionDefinitionKey: string;
          tenantId?: string;
          variables: JSONDoc;
      }
      • OptionaldecisionDefinitionId?: never

        The ID of the decision to be evaluated.

      • decisionDefinitionKey: string

        The unique key identifying the decision to be evaluated.

      • OptionaltenantId?: string

        The tenant ID of the decision.

      • variables: JSONDoc

        The message variables as JSON document.