Class: WebHookTrigger

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

Overview

Category: Connectivity

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 = {}) ⇒ WebHookTrigger

Returns a new instance of WebHookTrigger.



1105
1106
1107
1108
1109
1110
1111
1112
1113
# File 'lib/ruby-macrodroid.rb', line 1105

def initialize(h={})

  options = {
    identifier: ''
  }

  super(options.merge h)

end