module Items:sig..end
module Icons:sig..end
type t = {
|
description : |
(* |
The description of this API.
| *) |
|
discoveryLink : |
(* |
A link to the discovery document.
| *) |
|
discoveryRestUrl : |
(* |
The URL for the discovery REST document.
| *) |
|
documentationLink : |
(* |
A link to human readable documentation for the API.
| *) |
|
icons : |
(* |
Links to 16x16 and 32x32 icons representing the API.
| *) |
|
id : |
(* |
The id of this API.
| *) |
|
kind : |
(* |
The kind for this response.
| *) |
|
labels : |
(* |
Labels for the status of this API, such as labs or deprecated.
| *) |
|
name : |
(* |
The name of the API.
| *) |
|
preferred : |
(* |
True if this version is the preferred version to use.
| *) |
|
title : |
(* |
The title of this API.
| *) |
|
version : |
(* |
The version of the API.
| *) |
val description : (t, string) GapiLens.t
val discoveryLink : (t, string) GapiLens.t
val discoveryRestUrl : (t, string) GapiLens.t
val documentationLink : (t, string) GapiLens.t
val icons : (t,
Icons.t)
GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val labels : (t, string list) GapiLens.t
val name : (t, string) GapiLens.t
val preferred : (t, bool) GapiLens.t
val title : (t, string) GapiLens.t
val version : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t