Module Values.SeverityStatisticsSource

Information about severity level for each finding type.

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

    The timestamp at which a finding type for a specific severity was last generated.

    *)
  2. severity : Double.t option;
    (*

    The severity level associated with each finding type.

    *)
  3. totalFindings : Integer.t option;
    (*

    The total number of findings associated with this severity.

    *)
}
Sourceval make : ?lastGeneratedAt:??? -> ?severity:??? -> ?totalFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `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