Module Values.AggregatesSource

Contains the (pre-calculated) aggregate values for an asset property.

Sourcetype nonrec t = {
  1. average : AggregatedDoubleValue.t option;
    (*

    The average (mean) value of the time series over a time interval window.

    *)
  2. count : AggregatedDoubleValue.t option;
    (*

    The count of data points in the time series over a time interval window.

    *)
  3. maximum : AggregatedDoubleValue.t option;
    (*

    The maximum value of the time series over a time interval window.

    *)
  4. minimum : AggregatedDoubleValue.t option;
    (*

    The minimum value of the time series over a time interval window.

    *)
  5. sum : AggregatedDoubleValue.t option;
    (*

    The sum of the time series over a time interval window.

    *)
  6. standardDeviation : AggregatedDoubleValue.t option;
    (*

    The standard deviation of the time series over a time interval window.

    *)
}
Sourceval make : ?average:??? -> ?count:??? -> ?maximum:??? -> ?minimum:??? -> ?sum:??? -> ?standardDeviation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of AggregatedDoubleValue.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