Module GapiCalendarV3Model.EventReminder

type t = {
_method : string;(*

The method used by this reminder. Possible values are:

  • "email" - Reminders are sent via email.
  • "popup" - Reminders are sent via a UI popup. Required when adding a reminder.
*)
minutes : int;(*

Number of minutes before the start of the event when the reminder should trigger. Valid values are between 0 and 40320 (4 weeks in minutes). Required when adding a reminder.

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