Module Values.BooleanCondition

Boolean 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.

Sourcetype nonrec t = {
  1. equalTo : BooleanOperands.t option;
    (*

    Tests that operandOne is equal to operandTwo.

    *)
  2. notEqualTo : BooleanOperands.t option;
    (*

    Tests that operandOne is not equal to operandTwo.

    *)
  3. andAll : CompoundCondition.t option;
    (*

    Combines multiple conditions with AND operator. All conditions must be true for the compound condition to be true.

    *)
  4. orAll : CompoundCondition.t option;
    (*

    Combines multiple conditions with OR operator. At least one condition must be true for the compound condition to be true.

    *)
}
Sourceval make : ?equalTo:BooleanOperands.t -> ?notEqualTo:BooleanOperands.t -> ?andAll:CompoundCondition.t -> ?orAll:CompoundCondition.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t