Module Values.BooleanOperandsSource

Boolean operands for a condition. 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. operandOne : OperandOne.t;
    (*

    Represents the left hand operand in the condition.

    *)
  2. operandTwo : OperandTwo.t;
    (*

    Represents the right hand operand in the condition.

    *)
  3. result : Boolean.t;
    (*

    The value of the outer rule if the condition evaluates to true.

    *)
}
Sourceval context_ : string
Sourceval make : operandOne:OperandOne.t -> operandTwo:OperandTwo.t -> result:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldId.t | `Structure of 'a list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t