Module Values.QuickResponseQueryFieldSource

The quick response fields to query quick responses by. The following is the list of supported field names. content name description shortcutKey

Sourcetype nonrec t = {
  1. name : NonEmptyString.t;
    (*

    The name of the attribute to query the quick responses by.

    *)
  2. values : QuickResponseQueryValueList.t;
    (*

    The values of the attribute to query the quick responses by.

    *)
  3. operator : QuickResponseQueryOperator.t;
    (*

    The operator to use for matching attribute field values in the query.

    *)
  4. allowFuzziness : Boolean.t option;
    (*

    Whether the query expects only exact matches on the attribute field values. The results of the query will only include exact matches if this parameter is set to false.

    *)
  5. priority : Priority.t option;
    (*

    The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.

    *)
}
Sourceval context_ : string
Sourceval make : ?allowFuzziness:??? -> ?priority:??? -> name:NonEmptyString.t -> values:QuickResponseQueryValueList.t -> operator:QuickResponseQueryOperator.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of QuickResponseQueryValue.t ] list | `String of NonEmptyString.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