package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiCalendarV3Model.CalendarSource

Sourcetype t = {
  1. description : string;
    (*

    Description of the calendar. Optional.

    *)
  2. id : string;
    (*

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

    *)
  3. conferenceProperties : ConferenceProperties.t;
    (*

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

    *)
  4. etag : string;
    (*

    ETag of the resource.

    *)
  5. summary : string;
    (*

    Title of the calendar.

    *)
  6. kind : string;
    (*

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

    *)
  7. location : string;
    (*

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

    *)
  8. timeZone : string;
    (*

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

    *)
}
Sourceval description : (t, string) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval conferenceProperties : (t, ConferenceProperties.t) GapiLens.t
Sourceval etag : (t, string) GapiLens.t
Sourceval summary : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval location : (t, string) GapiLens.t
Sourceval timeZone : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t