Class: RejectCallAction
- Inherits:
-
PhoneAction
- Object
- MacroObject
- Action
- PhoneAction
- RejectCallAction
- Defined in:
- lib/ruby-macrodroid/actions.rb
Overview
Category: Phone
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ RejectCallAction
constructor
A new instance of RejectCallAction.
- #to_s(colour: false) ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ RejectCallAction
Returns a new instance of RejectCallAction.
1972 1973 1974 1975 1976 1977 1978 1979 |
# File 'lib/ruby-macrodroid/actions.rb', line 1972 def initialize(h={}) = { } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object
1981 1982 1983 1984 |
# File 'lib/ruby-macrodroid/actions.rb', line 1981 def to_s(colour: false) @s = 'Call Reject' + "\n " super() end |