Module Values.ArchiveStringExpressionSource

A string expression to evaluate an email attribute value against one or more string values.

Sourcetype nonrec t = {
  1. evaluate : ArchiveStringToEvaluate.t;
    (*

    The attribute of the email to evaluate.

    *)
  2. operator : ArchiveStringOperator.t;
    (*

    The operator to use when evaluating the string values.

    *)
  3. values : StringValueList.t;
    (*

    The list of string values to evaluate the email attribute against.

    *)
}
Sourceval context_ : string
Sourceval make : evaluate:ArchiveStringToEvaluate.t -> operator:ArchiveStringOperator.t -> values:StringValueList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of StringValue.t ] list | `Structure of (string * [> `Enum of string ]) 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