Class: NotificationPresentConstraint
- Inherits:
-
Constraint
- Object
- MacroObject
- Constraint
- NotificationPresentConstraint
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Notification
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ NotificationPresentConstraint
constructor
A new instance of NotificationPresentConstraint.
Methods inherited from Constraint
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ NotificationPresentConstraint
Returns a new instance of NotificationPresentConstraint.
4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 |
# File 'lib/ruby-macrodroid.rb', line 4807 def initialize(h={}) = { enable_regex: false, application_name_list: ["All applications"], exact_match: false, excludes: false, excludes_apps: -1, option: 0, package_name_list: ["allApplications"], text_content: '' } super(.merge h) end |