Values.BooleanConditionBoolean condition for a rule. In the Amazon Connect admin website, case rules are known as case field conditions. For more information about case field conditions, see Add case field conditions to a case template.
type nonrec t = {equalTo : BooleanOperands.t option;Tests that operandOne is equal to operandTwo.
*)notEqualTo : BooleanOperands.t option;Tests that operandOne is not equal to operandTwo.
*)andAll : CompoundCondition.t option;Combines multiple conditions with AND operator. All conditions must be true for the compound condition to be true.
*)orAll : CompoundCondition.t option;Combines multiple conditions with OR operator. At least one condition must be true for the compound condition to be true.
*)}val make :
?equalTo:BooleanOperands.t ->
?notEqualTo:BooleanOperands.t ->
?andAll:CompoundCondition.t ->
?orAll:CompoundCondition.t ->
unit ->
t