Class: AddCalendarEntryAction
- Inherits:
-
LoggingAction
- Object
- MacroObject
- Action
- LoggingAction
- AddCalendarEntryAction
- Defined in:
- lib/ruby-macrodroid/actions.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.
- #to_s(colour: false, indent: 0) ⇒ Object (also: #to_summary)
Methods inherited from Action
Methods included from ObjectX
#action_to_object, #object_create, #varify
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ AddCalendarEntryAction
Returns a new instance of AddCalendarEntryAction.
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 |
# File 'lib/ruby-macrodroid/actions.rb', line 1772 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 |
Instance Method Details
#to_s(colour: false, indent: 0) ⇒ Object Also known as: to_summary
1795 1796 1797 |
# File 'lib/ruby-macrodroid/actions.rb', line 1795 def to_s(colour: false, indent: 0) 'AddCalendarEntryAction ' + @h.inspect end |