Module Values.DataPointSource

A timestamp, and a single numerical value, which together represent a measurement at a particular point in time.

Sourcetype nonrec t = {
  1. timestamp : ISOTimestamp.t option;
    (*

    The time, in epoch format, associated with a particular Value.

    *)
  2. value : Double.t option;
    (*

    The actual value associated with a particular Timestamp.

    *)
}
Sourceval make : ?timestamp:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Timestamp of ISOTimestamp.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