Module Values.ReportGroupTrendStatsSource

Contains trend statistics for a set of reports. The actual values depend on the type of trend being collected. For more information, see .

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

    Contains the average of all values analyzed.

    *)
  2. max : String_.t option;
    (*

    Contains the maximum value analyzed.

    *)
  3. min : String_.t option;
    (*

    Contains the minimum value analyzed.

    *)
}
Sourceval make : ?average:??? -> ?max:??? -> ?min:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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