Module Values.SimpleRuleEvaluationSource

Information needed to compare two values with a comparison operator.

Sourcetype nonrec t = {
  1. inputPropertyValue : InputPropertyValue.t option;
    (*

    The value of the input property, on the left side of the comparison operator.

    *)
  2. operator : ComparisonOperator.t option;
    (*

    The comparison operator.

    *)
  3. thresholdValue : ThresholdValue.t option;
    (*

    The threshold value, on the right side of the comparison operator.

    *)
}
Sourceval make : ?inputPropertyValue:??? -> ?operator:??? -> ?thresholdValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InputPropertyValue.t ]) 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