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

Methods inherited from InsightsBase

#initialize, #to_s, #v1

Methods inherited from Domain

#absolute_url, #initialize, #request

Constructor Details

This class inherits a constructor from Twilio::REST::InsightsBase

Instance Method Details

#call_summariesTwilio::REST::Insights::V1::CallSummariesInstance



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

#calls(sid = :unset) ⇒ Twilio::REST::Insights::V1::CallInstance, Twilio::REST::Insights::V1::CallList

Parameters:

  • sid (String) (defaults to: :unset)

    The sid

Returns:



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

#conferences(conference_sid = :unset) ⇒ Twilio::REST::Insights::V1::ConferenceInstance, Twilio::REST::Insights::V1::ConferenceList

Parameters:

  • conference_sid (String) (defaults to: :unset)

    The unique SID identifier of the Conference.

Returns:



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

#rooms(room_sid = :unset) ⇒ Twilio::REST::Insights::V1::RoomInstance, Twilio::REST::Insights::V1::RoomList

Parameters:

  • room_sid (String) (defaults to: :unset)

    Unique identifier for the room.

Returns:



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

#settingsTwilio::REST::Insights::V1::SettingInstance



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