package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. _method : string;
    (*

    The method used by this reminder. Possible values are:

    • "email" - Reminders are sent via email.
    • "sms" - Reminders are sent via SMS. These are only available for G Suite customers. Requests to set SMS reminders for other account types are ignored.
    • "popup" - Reminders are sent via a UI popup. Required when adding a reminder.
    *)
  2. 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