Class: ApplicationInstalledRemovedTrigger

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

Overview

Category: Applications

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Trigger

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ ApplicationInstalledRemovedTrigger



1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
# File 'lib/ruby-macrodroid.rb', line 1030

def initialize(h={})

  options = {
    application_name_list: [],
    package_name_list: [],
    installed: true,
    application_option: 0,
    updated: false
  }

  super(options.merge h)

end