package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiPlusV1Model.PlaceSource

Sourcemodule Position : sig ... end
Sourcemodule Address : sig ... end
Sourcetype 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.

    *)
}
Sourceval address : (t, Address.t) GapiLens.t
Sourceval displayName : (t, string) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval position : (t, Position.t) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t