Class: NotificationPresentConstraint

Inherits:
Constraint show all
Defined in:
lib/ruby-macrodroid.rb

Overview

Category: Notification

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ NotificationPresentConstraint

Returns a new instance of NotificationPresentConstraint.



4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
# File 'lib/ruby-macrodroid.rb', line 4477

def initialize(h={})

  options = {
    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(options.merge h)

end