Module Values.TimeRangeSource

A time range with a start and end time.

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

    Unix epoch timestamp in UTC at which the time range starts.

    *)
  2. endTime : Timestamp.t;
    (*

    Unix epoch timestamp in UTC at which the time range ends.

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