Values.MessageTemplateQueryFieldSourceThe message template fields to query message templates by. The following is the list of supported field names: name description
type nonrec t = {name : NonEmptyString.t;The name of the attribute to query the message templates by.
*)values : MessageTemplateQueryValueList.t;The values of the attribute to query the message templates by.
*)operator : MessageTemplateQueryOperator.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:MessageTemplateQueryValueList.t ->
operator:MessageTemplateQueryOperator.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `List of [> `String of MessageTemplateQueryValue.t ] list
| `String of NonEmptyString.t ])
list ]