package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Position : sig ... end
module Address : sig ... end
type t = {
  1. address : Address.t;
    (*

    The physical address of the place.

    *)
  2. displayName : string;
    (*

    The display name of the place.

    *)
  3. id : string;
    (*

    The id of the place.

    *)
  4. kind : string;
    (*

    Identifies this resource as a place. Value: "plus#place".

    *)
  5. position : Position.t;
    (*

    The position of the place.

    *)
}
val address : (t, Address.t) GapiLens.t
val displayName : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val position : (t, Position.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