Module GapiCalendarV3Model.Calendar

module Calendar: sig .. end

type t = {
   description : string; (*
Description of the calendar. Optional.
*)
   etag : string; (*
ETag of the resource.
*)
   id : string; (*
Identifier of the calendar. To retrieve IDs call the calendarList.list() method.
*)
   kind : string; (*
Type of the resource ("calendar#calendar").
*)
   location : string; (*
Geographic location of the calendar as free-form text. Optional.
*)
   summary : string; (*
Title of the calendar.
*)
   timeZone : string; (*
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