Module GapiCalendarV3Model.Events

type t = {
accessRole : string;

The user's access role for this calendar. Read-only. Possible values are:

  • "none" - The user has no access.
  • "freeBusyReader" - The user has read access to free/busy information.
  • "reader" - The user has read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
  • "writer" - The user has read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
  • "owner" - The user has ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.
defaultReminders : EventReminder.t list;

The default reminders on the calendar for the authenticated user. These reminders apply to all events on this calendar that do not explicitly override them (i.e. do not have reminders.useDefault set to True).

description : string;

Description of the calendar. Read-only.

etag : string;

ETag of the collection.

items : Event.t list;

List of events on the calendar.

kind : string;

Type of the collection ("calendar#events").

nextPageToken : string;

Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided.

nextSyncToken : string;

Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.

summary : string;

Title of the calendar. Read-only.

timeZone : string;

The time zone of the calendar. Read-only.

updated : GapiDate.t;

Last modification time of the calendar (as a RFC3339 timestamp). Read-only.

}
val accessRole : (t, string) GapiLens.t
val defaultReminders : (tEventReminder.t list) GapiLens.t
val description : (t, string) GapiLens.t
val etag : (t, string) GapiLens.t
val items : (tEvent.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (t, string) GapiLens.t
val nextSyncToken : (t, string) GapiLens.t
val summary : (t, string) GapiLens.t
val timeZone : (t, string) GapiLens.t
val updated : (tGapiDate.t) 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