Module GapiCalendarV3Model.CalendarNotification

module CalendarNotification: sig .. end

type t = {
   _method : string; (*
The method used to deliver the notification. Possible values are:
  • "email" - Reminders are sent via email.
  • "sms" - Reminders are sent via SMS. This value is read-only and is ignored on inserts and updates. SMS reminders are only available for Google Apps for Work, Education, and Government customers.

*)
   _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 event is changed.
  • "agenda" - An agenda with the events of the day (sent out in the morning).

*)
}
val _method : (t, string) GapiLens.t
val _type : (t, string) 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