Values.QuickResponseQueryFieldSourceThe quick response fields to query quick responses by. The following is the list of supported field names. content name description shortcutKey
type nonrec t = {name : NonEmptyString.t;The name of the attribute to query the quick responses by.
*)values : QuickResponseQueryValueList.t;The values of the attribute to query the quick responses by.
*)operator : QuickResponseQueryOperator.t;The operator to use for matching attribute field values in the query.
*)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.
*)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.
*)}val make :
?allowFuzziness:??? ->
?priority:??? ->
name:NonEmptyString.t ->
values:QuickResponseQueryValueList.t ->
operator:QuickResponseQueryOperator.t ->
unit ->
tval 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 ]