Module Values.ConditionSource

A conditional statement with which to compare a value, after a timestamp, before a timestamp, or equal to a string or integer. If multiple conditions are specified, the conditionals become an ANDed statement. If multiple values are specified for a conditional, the values are ORd.

Sourcetype nonrec t = {
  1. after : Timestamp.t option;
    (*

    After the specified timestamp.

    *)
  2. before : Timestamp.t option;
    (*

    Before the specified timestamp

    *)
  3. equals : AttributeValueList.t option;
    (*

    The value is equal to the provided string or integer.

    *)
}
Sourceval make : ?after:??? -> ?before:??? -> ?equals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Integer of Integer.t | `String of StringListMemberString.t ] list ]) list | `Timestamp of Timestamp.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