Sha256: ad0874491922c7d7e392f69d14d163f33c460dde42ad57abf1f82e42fe4fddad

Contents?: true

Size: 1.17 KB

Versions: 11

Compression:

Stored size: 1.17 KB

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /
#
# frozen_string_literal: true

module Twilio
  module REST
    class Insights < Domain
      ##
      # Initialize the Insights Domain
      def initialize(twilio)
        super

        @base_url = 'https://insights.twilio.com'
        @host = 'insights.twilio.com'
        @port = 443

        # Versions
        @v1 = nil
      end

      ##
      # Version v1 of insights
      def v1
        @v1 ||= V1.new self
      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)
        self.v1.calls(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)
        self.v1.rooms(room_sid)
      end

      ##
      # Provide a user friendly representation
      def to_s
        '#<Twilio::REST::Insights>'
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
twilio-ruby-5.57.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.57.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.56.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.55.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.54.1 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.54.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.53.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.52.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.51.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.50.0 lib/twilio-ruby/rest/insights.rb
twilio-ruby-5.49.0 lib/twilio-ruby/rest/insights.rb