module FormattedResults:sig..end
module RuleResults:sig..end
type t = {
|
locale : |
(* |
The locale of the formattedResults, e.g. "en_US".
| *) |
|
ruleResults : |
(* |
Dictionary of formatted rule results, with one entry for each PageSpeed rule instantiated and run by the server.
| *) |
val locale : (t, string) GapiLens.t
val ruleResults : (t,
(string * RuleResults.t)
list)
GapiLens.t
val empty : t
val render : t ->
GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model ->
t