Module Values.AggregatedValueSource

Contains aggregated asset property values (for example, average, minimum, and maximum).

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

    The date the aggregating computations occurred, in Unix epoch time.

    *)
  2. quality : Quality.t option;
    (*

    The quality of the aggregated data.

    *)
  3. value : Aggregates.t option;
    (*

    The value of the aggregates.

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