Sha256: c9aa06b51d746f21845b1141e283e3b6f25b2eddbffc2695bbe381f98ec3ddc8

Contents?: true

Size: 1.52 KB

Versions: 53

Compression:

Stored size: 1.52 KB

Contents

module Twilio
  module REST
    class Insights < InsightsBase
      ##
      # @return [Twilio::REST::Insights::V1::SettingInstance]
      def settings
        warn "settings is deprecated. Use v1.settings instead."
        self.v1.settings()
      end

      ##
      # @param [String] sid The sid
      # @return [Twilio::REST::Insights::V1::CallInstance] if sid was passed.
      # @return [Twilio::REST::Insights::V1::CallList]
      def calls(sid=:unset)
        warn "calls is deprecated. Use v1.calls instead."
        self.v1.calls(sid)
      end

      ##
      # @return [Twilio::REST::Insights::V1::CallSummariesInstance]
      def call_summaries
        warn "call_summaries is deprecated. Use v1.call_summaries instead."
        self.v1.call_summaries()
      end

      ##
      # @param [String] conference_sid The unique SID identifier of the Conference.
      # @return [Twilio::REST::Insights::V1::ConferenceInstance] if conference_sid was passed.
      # @return [Twilio::REST::Insights::V1::ConferenceList]
      def conferences(conference_sid=:unset)
        warn "conferences is deprecated. Use v1.conferences instead."
        self.v1.conferences(conference_sid)
      end

      ##
      # @param [String] room_sid Unique identifier for the room.
      # @return [Twilio::REST::Insights::V1::RoomInstance] if room_sid was passed.
      # @return [Twilio::REST::Insights::V1::RoomList]
      def rooms(room_sid=:unset)
        warn "rooms is deprecated. Use v1.rooms instead."
        self.v1.rooms(room_sid)
      end
    end
  end
end

Version data entries

53 entries across 53 versions & 2 rubygems

Version Path
twilio-ruby-7.4.4 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.4.3 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.4.2 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.4.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.4.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.7 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.6 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.5 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.4 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.3 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.2 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.3.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.2.4 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.2.3 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.2.2 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.2.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.2.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.1.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-7.0.2 lib/twilio-ruby/rest/insights.rb