Module Values_1.DateTimeConditionSource

A datetime search condition for Search APIs.

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

    A name of the datetime property to be searched

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

    A minimum value of the property.

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

    A maximum value of the property.

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

    Datetime property comparison type.

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