GapiPlusV1Model.Place
module Position : sig ... end
module Address : sig ... end
type t = {
address : Address.t;
The physical address of the place.
*)displayName : string;
The display name of the place.
*)id : string;
The id of the place.
*)kind : string;
Identifies this resource as a place. Value: "plus#place".
*)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