Values.AggregatesSourceContains the (pre-calculated) aggregate values for an asset property.
type nonrec t = {average : AggregatedDoubleValue.t option;The average (mean) value of the time series over a time interval window.
*)count : AggregatedDoubleValue.t option;The count of data points in the time series over a time interval window.
*)maximum : AggregatedDoubleValue.t option;The maximum value of the time series over a time interval window.
*)minimum : AggregatedDoubleValue.t option;The minimum value of the time series over a time interval window.
*)sum : AggregatedDoubleValue.t option;The sum of the time series over a time interval window.
*)standardDeviation : AggregatedDoubleValue.t option;The standard deviation of the time series over a time interval window.
*)}val to_value :
t ->
[> `Structure of (string * [> `Double of AggregatedDoubleValue.t ]) list ]