class RejectCallAction

Category: Phone

Public Class Methods

new(h={}) click to toggle source
Calls superclass method PhoneAction::new
# File lib/ruby-macrodroid/actions.rb, line 2713
def initialize(h={})

  options = {
  }

  super(options.merge h)

end

Public Instance Methods

to_s(colour: false, indent: 0) click to toggle source
Calls superclass method MacroObject#to_s
# File lib/ruby-macrodroid/actions.rb, line 2722
def to_s(colour: false, indent: 0)
  @s = 'Call Reject'
  super()
end