module Calendar:sig..end
type t = {
|
description : |
(* |
Description of the calendar. Optional.
| *) |
|
etag : |
(* |
ETag of the resource.
| *) |
|
id : |
(* |
Identifier of the calendar. To retrieve IDs call the calendarList.list() method.
| *) |
|
kind : |
(* |
Type of the resource ("calendar#calendar").
| *) |
|
location : |
(* |
Geographic location of the calendar as free-form text. Optional.
| *) |
|
summary : |
(* |
Title of the calendar.
| *) |
|
timeZone : |
(* |
The time zone of the calendar. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) Optional.
| *) |
val description : (t, string) GapiLens.t
val etag : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val location : (t, string) GapiLens.t
val summary : (t, string) GapiLens.t
val timeZone : (t, string) 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