Sha256: 83a4f23157596c2451960235c1fbd7fd9102f4aad58dee5d438f9e1efa95f03e
Contents?: true
Size: 915 Bytes
Versions: 28
Compression:
Stored size: 915 Bytes
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 ## # Provide a user friendly representation def to_s '#<Twilio::REST::Insights>' end end end end
Version data entries
28 entries across 28 versions & 1 rubygems