class Google::Apis::CalendarV3::Event::Reminders
Information about the event's reminders for the authenticated user.
Attributes
overrides[RW]
If the event doesn't use the default reminders, this lists the reminders specific to the event, or, if not set, indicates that no reminders are set for this event. The maximum number of override reminders is 5. Corresponds to the JSON property `overrides` @return [Array<Google::Apis::CalendarV3::EventReminder>]
use_default[RW]
Whether the default reminders of the calendar apply to the event. Corresponds to the JSON property `useDefault` @return [Boolean]
use_default?[RW]
Whether the default reminders of the calendar apply to the event. Corresponds to the JSON property `useDefault` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/calendar_v3/classes.rb, line 1574 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 1579 def update!(**args) @overrides = args[:overrides] if args.key?(:overrides) @use_default = args[:use_default] if args.key?(:use_default) end