Module Values.OperandTwoSource

Represents the right hand operand in the 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. stringValue : OperandTwoStringValueString.t option;
    (*

    String value type.

    *)
  2. booleanValue : Boolean.t option;
    (*

    Boolean value type.

    *)
  3. doubleValue : Double.t option;
    (*

    Double value type.

    *)
  4. emptyValue : EmptyOperandValue.t option;
    (*

    Empty value type.

    *)
}
Sourceval make : ?stringValue:??? -> ?booleanValue:??? -> ?doubleValue:??? -> ?emptyValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of OperandTwoStringValueString.t | `Structure of 'a 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