package gapi-ocaml

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

Module GapiCalendarV3Model.CalendarListEntrySource

Sourcemodule NotificationSettings : sig ... end
Sourcetype t = {
  1. primary : bool;
    (*

    Whether the calendar is the primary calendar of the authenticated user. Read-only. Optional. The default is False.

    *)
  2. notificationSettings : NotificationSettings.t;
    (*

    The notifications that the authenticated user is receiving for this calendar.

    *)
  3. summaryOverride : string;
    (*

    The summary that the authenticated user has set for this calendar. Optional.

    *)
  4. kind : string;
    (*

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

    *)
  5. etag : string;
    (*

    ETag of the resource.

    *)
  6. deleted : bool;
    (*

    Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False.

    *)
  7. accessRole : string;
    (*

    The effective access role that the authenticated user has on the calendar. Read-only. Possible values are:

    • "freeBusyReader" - Provides read access to free/busy information.
    • "reader" - Provides read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
    • "writer" - Provides read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
    • "owner" - Provides ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.
    *)
  8. selected : bool;
    (*

    Whether the calendar content shows up in the calendar UI. Optional. The default is False.

    *)
  9. description : string;
    (*

    Description of the calendar. Optional. Read-only.

    *)
  10. timeZone : string;
    (*

    The time zone of the calendar. Optional. Read-only.

    *)
  11. colorId : string;
    (*

    The color of the calendar. This is an ID referring to an entry in the calendar section of the colors definition (see the colors endpoint). This property is superseded by the backgroundColor and foregroundColor properties and can be ignored when using these properties. Optional.

    *)
  12. backgroundColor : string;
    (*

    The main color of the calendar in the hexadecimal format "#0088aa". This property supersedes the index-based colorId property. To set or change this property, you need to specify colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.

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

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

    *)
  14. defaultReminders : EventReminder.t list;
    (*

    The default reminders that the authenticated user has for this calendar.

    *)
  15. hidden : bool;
    (*

    Whether the calendar has been hidden from the list. Optional. The attribute is only returned when the calendar is hidden, in which case the value is true.

    *)
  16. location : string;
    (*

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

    *)
  17. summary : string;
    (*

    Title of the calendar. Read-only.

    *)
  18. id : string;
    (*

    Identifier of the calendar.

    *)
  19. foregroundColor : string;
    (*

    The foreground color of the calendar in the hexadecimal format "#ffffff". This property supersedes the index-based colorId property. To set or change this property, you need to specify colorRgbFormat=true in the parameters of the insert, update and patch methods. Optional.

    *)
}
Sourceval primary : (t, bool) GapiLens.t
Sourceval notificationSettings : (t, NotificationSettings.t) GapiLens.t
Sourceval summaryOverride : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval etag : (t, string) GapiLens.t
Sourceval deleted : (t, bool) GapiLens.t
Sourceval accessRole : (t, string) GapiLens.t
Sourceval selected : (t, bool) GapiLens.t
Sourceval description : (t, string) GapiLens.t
Sourceval timeZone : (t, string) GapiLens.t
Sourceval colorId : (t, string) GapiLens.t
Sourceval backgroundColor : (t, string) GapiLens.t
Sourceval conferenceProperties : (t, ConferenceProperties.t) GapiLens.t
Sourceval defaultReminders : (t, EventReminder.t list) GapiLens.t
Sourceval hidden : (t, bool) GapiLens.t
Sourceval location : (t, string) GapiLens.t
Sourceval summary : (t, string) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval foregroundColor : (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