Module Values.MessageTemplateSearchExpressionSource

The search expression of the message template.

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

    The message template query expressions.

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

    The configuration of filtering rules applied to message template query results.

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

    The message template 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 MessageTemplateQueryValue.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