package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Url : sig ... end
module Spelling : sig ... end
module SearchInformation : sig ... end
type t = {
  1. context : Context.t;
  2. items : Result.t list;
  3. kind : string;
  4. promotions : Promotion.t list;
  5. queries : (string * Query.t list) list;
  6. searchInformation : SearchInformation.t;
  7. spelling : Spelling.t;
  8. url : Url.t;
}
val context : (t, Context.t) GapiLens.t
val items : (t, Result.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val promotions : (t, Promotion.t list) GapiLens.t
val queries : (t, (string * Query.t list) list) GapiLens.t
val searchInformation : (t, SearchInformation.t) GapiLens.t
val spelling : (t, Spelling.t) GapiLens.t
val url : (t, Url.t) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t