Values.DateStatisticsSourceRepresents list a map of dates with a count of total findings generated on each date.
type nonrec t = {date : Timestamp.t option;The timestamp when the total findings count is observed. For example, Date would look like "2024-09-05T17:00:00-07:00" whereas LastGeneratedAt would look like 2024-09-05T17:12:29-07:00".
*)lastGeneratedAt : Timestamp.t option;The timestamp at which the last finding in the findings count, was generated.
*)severity : Double.t option;The severity of the findings generated on each date.
*)totalFindings : Integer.t option;The total number of findings that were generated per severity level on each date.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of Double.t
| `Integer of Integer.t
| `Timestamp of Timestamp.t ])
list ]