Module Values.QuickResponseSearchExpressionSource

Information about the import job.

Sourcetype nonrec t = {
  1. queries : QuickResponseQueryFieldList.t option;
    (*

    The quick response query expressions.

    *)
  2. filters : QuickResponseFilterFieldList.t option;
    (*

    The configuration of filtering rules applied to quick response query results.

    *)
  3. orderOnField : QuickResponseOrderField.t option;
    (*

    The quick response attribute fields on which the query results are ordered.

    *)
}
Sourceval make : ?queries:??? -> ?filters:??? -> ?orderOnField:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of QuickResponseQueryValue.t ] list | `String of NonEmptyString.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) 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