package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Urls : sig ... end
module Header : sig ... end
type t = {
  1. header : Header.t;
    (*

    Heading to be displayed with the list of URLs.

    *)
  2. urls : Urls.t list;
    (*

    List of entries that provide information about URLs in the url block. Optional.

    *)
}
val header : (t, Header.t) GapiLens.t
val urls : (t, Urls.t list) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t