Module Values_1.DecimalConditionSource

A decimal search condition for Search APIs.

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

    A name of the decimal property to be searched.

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

    A minimum value of the decimal property.

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

    A maximum value of the decimal property.

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

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

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