Package version:

Nested representation of a complex expression.

interface ExpressionV2 {
    operands?: ExpressionV2[];
    operators?: string[];
    type?: string;
    value?: string;
}

Properties

operands?: ExpressionV2[]

List of nested expressions.

operators?: string[]

Expression operator value Type: list of strings.

type?: string

Type of expressions supported by the system. Type: string.

value?: string

Value for Constant/Field Type: string.