GapiCalendarV3Model.Calendar
type t = {
description : string; | (* Description of the calendar. Optional. *) |
id : string; | (* Identifier of the calendar. To retrieve IDs call the calendarList.list() method. *) |
conferenceProperties : ConferenceProperties.t; | (* Conferencing properties for this calendar, for example what types of conferences are allowed. *) |
etag : string; | (* ETag of the resource. *) |
summary : string; | (* Title of the calendar. *) |
kind : string; | (* Type of the resource ("calendar#calendar"). *) |
location : string; | (* Geographic location of the calendar as free-form text. Optional. *) |
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 id : ( t, string ) GapiLens.t
val conferenceProperties : ( t, ConferenceProperties.t ) GapiLens.t
val etag : ( t, string ) GapiLens.t
val summary : ( t, string ) GapiLens.t
val kind : ( t, string ) GapiLens.t
val location : ( 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