Module Values.RuleNumberExpressionSource

A number expression to match numeric conditions with integers from the incoming email.

Sourcetype nonrec t = {
  1. evaluate : RuleNumberToEvaluate.t;
    (*

    The number to evaluate in a numeric condition expression.

    *)
  2. operator : RuleNumberOperator.t;
    (*

    The operator for a numeric condition expression.

    *)
  3. value : Double.t;
    (*

    The value to evaluate in a numeric condition expression.

    *)
}
Sourceval context_ : string
Sourceval make : evaluate:RuleNumberToEvaluate.t -> operator:RuleNumberOperator.t -> value:Double.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Structure of (string * [> `Enum of string ]) 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