For the complete documentation index, see llms.txt.
Skip to main content
Version: 8.10 (unreleased)

Type Alias: ExpressionEvaluationResult

type ExpressionEvaluationResult = object;

Properties

expression

expression: string;

The evaluated expression


referencedSecrets

referencedSecrets: ExpressionSecretReferenceItem[];

The secret references resolved from trusted sources while evaluating the expression: a camunda.secrets.<name> reference used directly in the expression, or a reference carried by a SECRET_REFERENCE-kind cluster variable the expression read. References appearing only in request-body variables or plain cluster variables are excluded. Callers use this to know which camunda.secrets.<name> occurrences in the result they may safely resolve.


result

result: unknown;

The result value. Its type can vary.


warnings

warnings: ExpressionEvaluationWarningItem[];

List of warnings generated during expression evaluation