package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. conferenceProperties : ConferenceProperties.t;
    (*

    Conferencing properties for this calendar, for example what types of conferences are allowed.

    *)
  2. description : string;
    (*

    Description of the calendar. Optional.

    *)
  3. etag : string;
    (*

    ETag of the resource.

    *)
  4. id : string;
    (*

    Identifier of the calendar. To retrieve IDs call the calendarList.list() method.

    *)
  5. kind : string;
    (*

    Type of the resource ("calendar#calendar").

    *)
  6. location : string;
    (*

    Geographic location of the calendar as free-form text. Optional.

    *)
  7. summary : string;
    (*

    Title of the calendar.

    *)
  8. timeZone : string;
    (*

    The time zone of the calendar. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) Optional.

    *)
}
val conferenceProperties : (t, ConferenceProperties.t) GapiLens.t
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