class Google::Apis::CalendarV3::EventReminder
Attributes
minutes[RW]
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. Corresponds to the JSON property `minutes` @return [Fixnum]
reminder_method[RW]
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. Corresponds to the JSON property `method` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/calendar_v3/classes.rb, line 1804 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/calendar_v3/classes.rb, line 1809 def update!(**args) @reminder_method = args[:reminder_method] if args.key?(:reminder_method) @minutes = args[:minutes] if args.key?(:minutes) end