Module Values.MessageTemplateQueryFieldSource

The message template fields to query message templates by. The following is the list of supported field names: name description

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

    The name of the attribute to query the message templates by.

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

    The values of the attribute to query the message templates by.

    *)
  3. operator : MessageTemplateQueryOperator.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:MessageTemplateQueryValueList.t -> operator:MessageTemplateQueryOperator.t -> unit -> t
Sourceval 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 ]
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