Class: AddCalendarEntryAction
- Inherits:
-
LoggingAction
- Object
- MacroObject
- Action
- LoggingAction
- AddCalendarEntryAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Logging
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ AddCalendarEntryAction
constructor
A new instance of AddCalendarEntryAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ AddCalendarEntryAction
Returns a new instance of AddCalendarEntryAction.
3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 |
# File 'lib/ruby-macrodroid.rb', line 3342 def initialize(h={}) = { title: '', duration_value: '0', calendar_id: '3', detail: '', availability: 0, fixed_days: 16, fixed_hour: 0, fixed_minute: 0, fixed_months: 8, fixed_time: true, relative_days: 0, relative_hours: 0, relative_minutes: 0, all_day_event: true } super(.merge h) end |