Class: ClearCallLogAction

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

Overview

Category: Phone

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ ClearCallLogAction

Returns a new instance of ClearCallLogAction.



3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
# File 'lib/ruby-macrodroid.rb', line 3777

def initialize(h={})

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

  super(options.merge h)

end