Module Values.TimeRangeSource

A range of between two set times

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

    The start of the time range.

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

    The end of the time range.

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