Class: Twilio::REST::Chat::V2

Inherits:
Version
  • Object
show all
Defined in:
lib/twilio-ruby/rest/chat/v2.rb,
lib/twilio-ruby/rest/chat/v2/service.rb,
lib/twilio-ruby/rest/chat/v2/credential.rb,
lib/twilio-ruby/rest/chat/v2/service/role.rb,
lib/twilio-ruby/rest/chat/v2/service/user.rb,
lib/twilio-ruby/rest/chat/v2/service/binding.rb,
lib/twilio-ruby/rest/chat/v2/service/channel.rb,
lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb,
lib/twilio-ruby/rest/chat/v2/service/channel/member.rb,
lib/twilio-ruby/rest/chat/v2/service/channel/message.rb,
lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb,
lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb,
lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb

Defined Under Namespace

Classes: CredentialContext, CredentialInstance, CredentialList, CredentialPage, ServiceContext, ServiceInstance, ServiceList, ServicePage

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) ⇒ V2

Initialize the V2 version of Chat



21
22
23
24
25
26
# File 'lib/twilio-ruby/rest/chat/v2.rb', line 21

def initialize(domain)
    super
    @version = 'v2'
    @credentials = nil
    @services = nil
end

Instance Method Details

#credentials(sid = :unset) ⇒ Twilio::REST::Chat::V2::CredentialContext, Twilio::REST::Chat::V2::CredentialList

Parameters:

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

    The SID of the Credential resource to fetch.

Returns:



32
33
34
35
36
37
38
39
40
41
# File 'lib/twilio-ruby/rest/chat/v2.rb', line 32

def credentials(sid=:unset)
    if sid.nil?
        raise ArgumentError, 'sid cannot be nil'
    end
    if sid == :unset
        @credentials ||= CredentialList.new self
    else
        CredentialContext.new(self, sid)
    end
end

#services(sid = :unset) ⇒ Twilio::REST::Chat::V2::ServiceContext, Twilio::REST::Chat::V2::ServiceList

Parameters:

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

    The SID of the Service resource to fetch.

Returns:



46
47
48
49
50
51
52
53
54
55
# File 'lib/twilio-ruby/rest/chat/v2.rb', line 46

def services(sid=:unset)
    if sid.nil?
        raise ArgumentError, 'sid cannot be nil'
    end
    if sid == :unset
        @services ||= ServiceList.new self
    else
        ServiceContext.new(self, sid)
    end
end

#to_sObject

Provide a user friendly representation



58
59
60
# File 'lib/twilio-ruby/rest/chat/v2.rb', line 58

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