Module Values.TimeWindowSource

Filters evaluation results based on start and end times.

Sourcetype nonrec t = {
  1. startTime : Date.t option;
    (*

    The start time of an execution.

    *)
  2. endTime : Date.t option;
    (*

    The end time of an execution. The end time must be after the start date.

    *)
}
Sourceval make : ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of Date.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