package gapi-ocaml

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

Module GapiCalendarV3Model.CalendarNotificationSource

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

    The method used to deliver the notification. The possible value is:

    • "email" - Notifications are sent via email. Required when adding a notification.
    *)
  2. _type : string;
    (*

    The type of notification. Possible values are:

    • "eventCreation" - Notification sent when a new event is put on the calendar.
    • "eventChange" - Notification sent when an event is changed.
    • "eventCancellation" - Notification sent when an event is cancelled.
    • "eventResponse" - Notification sent when an attendee responds to the event invitation.
    • "agenda" - An agenda with the events of the day (sent out in the morning). Required when adding a notification.
    *)
}
Sourceval _method : (t, string) GapiLens.t
Sourceval _type : (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