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