Class: ClearCallLogAction

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

Overview

Category: Phone

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ ClearCallLogAction

Returns a new instance of ClearCallLogAction.



2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
# File 'lib/ruby-macrodroid.rb', line 2701

def initialize(h={})

  options = {
    non_contact: false,
    specific_contact: false,
    type: 0
  }

  super(options.merge h)

end