package gapi-ocaml

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

Module GapiCalendarV3Model.EventsSource

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

    The time zone of the calendar. Read-only.

    *)
  2. 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).

    *)
  3. summary : string;
    (*

    Title of the calendar. Read-only.

    *)
  4. kind : string;
    (*

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

    *)
  5. items : Event.t list;
    (*

    List of events on the calendar.

    *)
  6. description : string;
    (*

    Description of the calendar. Read-only.

    *)
  7. 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.

    *)
  8. 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.

    *)
  9. updated : GapiDate.t;
    (*

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

    *)
  10. etag : string;
    (*

    ETag of the collection.

    *)
  11. 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.
    *)
}
Sourceval timeZone : (t, string) GapiLens.t
Sourceval defaultReminders : (t, EventReminder.t list) GapiLens.t
Sourceval summary : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval items : (t, Event.t list) GapiLens.t
Sourceval description : (t, string) GapiLens.t
Sourceval nextSyncToken : (t, string) GapiLens.t
Sourceval nextPageToken : (t, string) GapiLens.t
Sourceval updated : (t, GapiDate.t) GapiLens.t
Sourceval etag : (t, string) GapiLens.t
Sourceval accessRole : (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
OCaml

Innovation. Community. Security.