Class: Twilio::REST::Trunking::V1

Inherits:
Version
  • Object
show all
Defined in:
lib/twilio-ruby/rest/trunking/v1.rb,
lib/twilio-ruby/rest/trunking/v1/trunk.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/recording.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb,
lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb

Defined Under Namespace

Classes: TrunkContext, TrunkInstance, TrunkList, TrunkPage

Instance Attribute Summary

Attributes inherited from Version

#domain

Instance Method Summary collapse

Methods inherited from Version

#absolute_url, #create, #delete, #exception, #fetch, #page, #read_limits, #relative_uri, #request, #stream, #update

Constructor Details

#initialize(domain) ⇒ V1

Initialize the V1 version of Trunking


15
16
17
18
19
# File 'lib/twilio-ruby/rest/trunking/v1.rb', line 15

def initialize(domain)
  super
  @version = 'v1'
  @trunks = nil
end

Instance Method Details

#to_sObject

Provide a user friendly representation


39
40
41
# File 'lib/twilio-ruby/rest/trunking/v1.rb', line 39

def to_s
  '<Twilio::REST::Trunking::V1>'
end

#trunks(sid = :unset) ⇒ Twilio::REST::Trunking::V1::TrunkContext, Twilio::REST::Trunking::V1::TrunkList

Parameters:

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

    The unique string that we created to identify the Trunk resource to fetch.

Returns:


26
27
28
29
30
31
32
33
34
35
# File 'lib/twilio-ruby/rest/trunking/v1.rb', line 26

def trunks(sid=:unset)
  if sid.nil?
      raise ArgumentError, 'sid cannot be nil'
  end
  if sid == :unset
      @trunks ||= TrunkList.new self
  else
      TrunkContext.new(self, sid)
  end
end