Class: MakeCallAction
- Inherits:
-
PhoneAction
- Object
- MacroObject
- Action
- PhoneAction
- MakeCallAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Phone
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ MakeCallAction
constructor
A new instance of MakeCallAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ MakeCallAction
Returns a new instance of MakeCallAction.
2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 |
# File 'lib/ruby-macrodroid.rb', line 2837 def initialize(h={}) = { contact: {:m_id=>"Hardwired_Number", :m_lookupKey=>"Hardwired_Number", :m_name=>"[Select Number]"}, number: '' } super(.merge h) end |