Class: OutgoingCallTrigger
- Inherits:
-
Trigger
- Object
- MacroObject
- Trigger
- OutgoingCallTrigger
- Defined in:
- lib/ruby-macrodroid/triggers.rb
Overview
Category: Call/SMS
Instance Attribute Summary
Attributes inherited from Trigger
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ OutgoingCallTrigger
constructor
A new instance of OutgoingCallTrigger.
- #to_s(colour: false) ⇒ Object (also: #to_summary)
Methods inherited from Trigger
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ OutgoingCallTrigger
Returns a new instance of OutgoingCallTrigger.
306 307 308 309 310 311 312 313 314 315 316 317 318 |
# File 'lib/ruby-macrodroid/triggers.rb', line 306 def initialize(h={}) = { outgoing_call_to_list: [{:m_id=>"-2", :m_lookupKey=>"-2", :m_name=>"[Any Number]"}], group_id_list: [], group_name_list: [], option: 0, phone_number_exclude: false } super(.merge h) end |
Instance Method Details
#to_s(colour: false) ⇒ Object Also known as: to_summary
320 321 322 |
# File 'lib/ruby-macrodroid/triggers.rb', line 320 def to_s(colour: false) 'OutgoingCallTrigger ' + @h.inspect end |