Module Values.TimeRangeSource

Specifies a time range with inclusive begin and end dates.

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

    The inclusive start date of the time range.

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

    The inclusive end date of the time range.

    *)
}
Sourceval make : ?beginDateInclusive:??? -> ?endDateInclusive:??? -> 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