Module Values_0.NumberConditionSource

A leaf node condition which can be used to specify a numeric condition. The currently supported value for FieldName is limit.

Sourcetype nonrec t = {
  1. fieldName : String_.t option;
    (*

    The name of the field in the number condition.

    *)
  2. minValue : NullableProficiencyLimitValue.t option;
    (*

    The minValue to be used while evaluating the number condition.

    *)
  3. maxValue : NullableProficiencyLimitValue.t option;
    (*

    The maxValue to be used while evaluating the number condition.

    *)
  4. comparisonType : NumberComparisonType.t option;
    (*

    The type of comparison to be made when evaluating the number condition.

    *)
}
Sourceval make : ?fieldName:??? -> ?minValue:??? -> ?maxValue:??? -> ?comparisonType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NullableProficiencyLimitValue.t | `String of String_.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