Module Values.TimeConditionSource

A time condition denotes a creation time, last modification time, or other time.

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

    This is the timestamp value of the time condition.

    *)
  2. operator : TimeConditionOperator.t option;
    (*

    A string that defines what values will be returned. If this is included, avoid combinations of operators that will return all possible values. For example, including both EQUALS_TO and NOT_EQUALS_TO with a value of 4 will return all values.

    *)
}
Sourceval context_ : string
Sourceval make : ?operator:??? -> value:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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