Module Values.TimeRangeSource

Information about a time range.

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

    The start time of the time range. Specify null to leave the start time open-ended.

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

    The end time of the time range. Specify null to leave the end time open-ended.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> 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