Class: Twilio::REST::IntelligenceBase

Inherits:
Domain
  • Object
show all
Defined in:
lib/twilio-ruby/rest/intelligence_base.rb

Direct Known Subclasses

Intelligence

Instance Attribute Summary

Attributes inherited from Domain

#client

Instance Method Summary collapse

Methods inherited from Domain

#absolute_url, #request

Constructor Details

#initialize(twilio) ⇒ IntelligenceBase

Initialize intelligence domain

Parameters:

  • twilio
    • The twilio client



19
20
21
22
23
24
25
# File 'lib/twilio-ruby/rest/intelligence_base.rb', line 19

def initialize(twilio)
  super(twilio)
  @base_url =  "https://intelligence.twilio.com"
  @host = "intelligence.twilio.com"
  @port = 443
  @v2 = nil
end

Instance Method Details

#to_sObject

Provide a user friendly representation



33
34
35
# File 'lib/twilio-ruby/rest/intelligence_base.rb', line 33

def to_s
  '<Twilio::REST::Intelligence::V2>';
end

#v2Object



27
28
29
# File 'lib/twilio-ruby/rest/intelligence_base.rb', line 27

def v2
  @v2 ||= Intelligence::V2.new self
end