constraintExpression property

String? constraintExpression
getter/setter pair

A cel expression (go/cel) to be evaluated as a boolean value.

Two variables conversation_a and conversation_b will be available for evaluation. This expression should evaluate to true if conversation_a and conversation_b should be joined. This is used as an extra constraint on top of the join_key_expression to further refine the group of conversations that are joined together and will be evaluated in both directions. for two conversations c1 and c2 and the result will be OR'd. We will evaluate: f(c1, c2) OR f(c2, c1)

Optional.

Implementation

core.String? constraintExpression;