Module Values.TrendsMetricsResultSource

Contains the findings trend metrics data for a specific time point in the requested time period.

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

    The timestamp for this data point in the findings trend metrics.

    *)
  2. trendsValues : TrendsValues.t option;
    (*

    The finding trend metric values associated with this timestamp, including severity counts.

    *)
}
Sourceval make : ?timestamp:??? -> ?trendsValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Long of TrendsValueCount.t ]) list ]) 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