Class: MakeCallAction
- Inherits:
-
PhoneAction
- Object
- MacroObject
- Action
- PhoneAction
- MakeCallAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Phone
Instance Attribute Summary
Attributes inherited from Action
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.
3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 |
# File 'lib/ruby-macrodroid.rb', line 3825 def initialize(h={}) = { contact: {:m_id=>"Hardwired_Number", :m_lookupKey=>"Hardwired_Number", :m_name=>"[Select Number]"}, number: '' } super(.merge h) end |