Class: Twilio::REST::Insights
- Inherits:
-
InsightsBase
show all
- Defined in:
- lib/twilio-ruby/rest/insights.rb,
lib/twilio-ruby/rest/insights/v1.rb,
lib/twilio-ruby/rest/insights/v1/call.rb,
lib/twilio-ruby/rest/insights/v1/room.rb,
lib/twilio-ruby/rest/insights/v1/setting.rb,
lib/twilio-ruby/rest/insights/v1/call/event.rb,
lib/twilio-ruby/rest/insights/v1/conference.rb,
lib/twilio-ruby/rest/insights/v1/call/metric.rb,
lib/twilio-ruby/rest/insights/v1/call_summaries.rb,
lib/twilio-ruby/rest/insights/v1/call/annotation.rb,
lib/twilio-ruby/rest/insights/v1/room/participant.rb,
lib/twilio-ruby/rest/insights/v1/call/call_summary.rb,
lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb
Defined Under Namespace
Classes: V1
Instance Attribute Summary
Attributes inherited from Domain
#client
Instance Method Summary
collapse
#initialize, #to_s, #v1
Methods inherited from Domain
#absolute_url, #initialize, #request
Instance Method Details
22
23
24
25
|
# File 'lib/twilio-ruby/rest/insights.rb', line 22
def call_summaries
warn "call_summaries is deprecated. Use v1.call_summaries instead."
self.v1.call_summaries()
end
|
15
16
17
18
|
# File 'lib/twilio-ruby/rest/insights.rb', line 15
def calls(sid=:unset)
warn "calls is deprecated. Use v1.calls instead."
self.v1.calls(sid)
end
|
31
32
33
34
|
# File 'lib/twilio-ruby/rest/insights.rb', line 31
def conferences(conference_sid=:unset)
warn "conferences is deprecated. Use v1.conferences instead."
self.v1.conferences(conference_sid)
end
|
40
41
42
43
|
# File 'lib/twilio-ruby/rest/insights.rb', line 40
def rooms(room_sid=:unset)
warn "rooms is deprecated. Use v1.rooms instead."
self.v1.rooms(room_sid)
end
|
6
7
8
9
|
# File 'lib/twilio-ruby/rest/insights.rb', line 6
def settings
warn "settings is deprecated. Use v1.settings instead."
self.v1.settings()
end
|