Module Values.ActiveTimeRangeSource

A time range with a start and end time.

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

    The inclusive time range start date.

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

    The inclusive time range end date.

    *)
}
Sourceval context_ : string
Sourceval make : activeAfterInclusive:Timestamp.t -> activeBeforeInclusive: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