Values.AccountFindingsMetricSourceA summary of findings metrics for an account on a specified date.
type nonrec t = {date : Timestamp.t option;The date from which the findings metrics were retrieved.
*)newFindings : FindingMetricsValuePerSeverity.t option;The number of new findings of each severity on the specified date.
*)closedFindings : FindingMetricsValuePerSeverity.t option;The number of closed findings of each severity on the specified date.
*)openFindings : FindingMetricsValuePerSeverity.t option;The number of open findings of each severity as of the specified date.
*)meanTimeToClose : FindingMetricsValuePerSeverity.t option;The average time in days it takes to close findings of each severity as of a specified date.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Structure of (string * [> `Double of Double.t ]) list
| `Timestamp of Timestamp.t ])
list ]