Interface JiraExpressionsComplexityValueBean

The number of steps it took to evaluate the expression, where a step is a high-level operation performed by the expression. A step is an operation such as arithmetic, accessing a property, accessing a context variable, or calling a function.

interface JiraExpressionsComplexityValueBean {
    limit: number;
    value: number;
}

Properties

Properties

limit: number

The maximum allowed complexity. The evaluation will fail if this value is exceeded.

value: number

The complexity value of the current expression.