Class: ClearNotificationsAction
- Inherits:
-
Action
- Object
- MacroObject
- Action
- ClearNotificationsAction
- Defined in:
- lib/ruby-macrodroid.rb
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ClearNotificationsAction
constructor
A new instance of ClearNotificationsAction.
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ClearNotificationsAction
Returns a new instance of ClearNotificationsAction.
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 |
# File 'lib/ruby-macrodroid.rb', line 2098 def initialize(h={}) = { package_name_list: [], match_text: '', application_name_list: [], clear_persistent: false, excludes: false, match_option: 0, age_in_seconds: 0, option: 0, enable_regex: false } super(.merge h) end |