package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module RuleResults : sig ... end
type t = {
  1. locale : string;
    (*

    The locale of the formattedResults, e.g. "en_US".

    *)
  2. ruleResults : (string * RuleResults.t) list;
    (*

    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