package gapi-ocaml

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

Module GapiCalendarV3Model.EventReminderSource

Sourcetype t = {
  1. _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.
    *)
  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.

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