module EventReminder:sig..end
type t = {
|
_method : |
(* |
The method used by this reminder. Possible values are:
| *) |
|
minutes : |
(* |
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).
| *) |
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