Class: Google::Apis::CalendarV3::EventReminder
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::EventReminder
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/calendar_v3/classes.rb,
generated/google/apis/calendar_v3/representations.rb,
generated/google/apis/calendar_v3/representations.rb
Instance Attribute Summary collapse
-
#minutes ⇒ Fixnum
Number of minutes before the start of the event when the reminder should trigger.
-
#reminder_method ⇒ String
The method used by this reminder.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EventReminder
constructor
A new instance of EventReminder.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EventReminder
Returns a new instance of EventReminder.
1794 1795 1796 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1794 def initialize(**args) update!(**args) end |
Instance Attribute Details
#minutes ⇒ Fixnum
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
1792 1793 1794 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1792 def minutes @minutes end |
#reminder_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.
Corresponds to the JSON property
method
1785 1786 1787 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1785 def reminder_method @reminder_method end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1799 1800 1801 1802 |
# File 'generated/google/apis/calendar_v3/classes.rb', line 1799 def update!(**args) @reminder_method = args[:reminder_method] if args.key?(:reminder_method) @minutes = args[:minutes] if args.key?(:minutes) end |