Class: Twilio::REST::Call

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/calls.rb

Instance Method Summary collapse

Methods inherited from InstanceResource

#delete, #inspect, #method_missing, #refresh, #update

Methods included from Utils

#detwilify, #twilify

Constructor Details

#initialize(path, client, params = {}) ⇒ Call

Returns a new instance of Call.



15
16
17
18
# File 'lib/twilio-ruby/rest/calls.rb', line 15

def initialize(path, client, params={})
  super path, client, params
  resource :recordings, :notifications, :feedback
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Twilio::REST::InstanceResource

Instance Method Details

#cancelObject



24
25
26
# File 'lib/twilio-ruby/rest/calls.rb', line 24

def cancel
  update status: 'canceled'
end

#hangupObject



28
29
30
# File 'lib/twilio-ruby/rest/calls.rb', line 28

def hangup
  update status: 'completed'
end

#redirect_to(url) ⇒ Object



20
21
22
# File 'lib/twilio-ruby/rest/calls.rb', line 20

def redirect_to(url)
  update url: url
end