Class: ClearNotificationsAction
- Inherits:
-
NotificationsAction
- Object
- MacroObject
- Action
- NotificationsAction
- ClearNotificationsAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Notifications
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ClearNotificationsAction
constructor
A new instance of ClearNotificationsAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ClearNotificationsAction
Returns a new instance of ClearNotificationsAction.
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 |
# File 'lib/ruby-macrodroid.rb', line 2502 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 |