Class: Twilio::REST::Chat

Inherits:
Domain
  • Object
show all
Defined in:
lib/twilio-ruby/rest/chat.rb,
lib/twilio-ruby/rest/chat/v1.rb,
lib/twilio-ruby/rest/chat/v2.rb,
lib/twilio-ruby/rest/chat/v3.rb,
lib/twilio-ruby/rest/chat/v1/service.rb,
lib/twilio-ruby/rest/chat/v2/service.rb,
lib/twilio-ruby/rest/chat/v3/channel.rb,
lib/twilio-ruby/rest/chat/v1/credential.rb,
lib/twilio-ruby/rest/chat/v2/credential.rb,
lib/twilio-ruby/rest/chat/v1/service/role.rb,
lib/twilio-ruby/rest/chat/v1/service/user.rb,
lib/twilio-ruby/rest/chat/v2/service/role.rb,
lib/twilio-ruby/rest/chat/v2/service/user.rb,
lib/twilio-ruby/rest/chat/v1/service/channel.rb,
lib/twilio-ruby/rest/chat/v2/service/binding.rb,
lib/twilio-ruby/rest/chat/v2/service/channel.rb,
lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb,
lib/twilio-ruby/rest/chat/v1/service/channel/member.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/v1/service/channel/message.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/v1/service/user/user_channel.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: V1, V2, V3

Instance Attribute Summary

Attributes inherited from Domain

#client

Instance Method Summary collapse

Methods inherited from Domain

#absolute_url, #request

Constructor Details

#initialize(twilio) ⇒ Chat

Initialize the Chat Domain


14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/twilio-ruby/rest/chat.rb', line 14

def initialize(twilio)
  super

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

  # Versions
  @v1 = nil
  @v2 = nil
  @v3 = nil
end

Instance Method Details

#channels(service_sid = :unset, sid = :unset) ⇒ Twilio::REST::Chat::V3::ChannelInstance, Twilio::REST::Chat::V3::ChannelList

Parameters:

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

    The unique string that we created to identify the Channel resource.

Returns:


68
69
70
# File 'lib/twilio-ruby/rest/chat.rb', line 68

def channels(service_sid=:unset, sid=:unset)
  self.v3.channels(service_sid, sid)
end

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

Parameters:

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

    The unique string that we created to identify the Credential resource.

Returns:


50
51
52
# File 'lib/twilio-ruby/rest/chat.rb', line 50

def credentials(sid=:unset)
  self.v2.credentials(sid)
end

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

Parameters:

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

    The unique string that we created to identify the Service resource.

Returns:


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

def services(sid=:unset)
  self.v2.services(sid)
end

#to_sObject

Provide a user friendly representation


74
75
76
# File 'lib/twilio-ruby/rest/chat.rb', line 74

def to_s
  '#<Twilio::REST::Chat>'
end

#v1Object

Version v1 of chat


29
30
31
# File 'lib/twilio-ruby/rest/chat.rb', line 29

def v1
  @v1 ||= V1.new self
end

#v2Object

Version v2 of chat


35
36
37
# File 'lib/twilio-ruby/rest/chat.rb', line 35

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

#v3Object

Version v3 of chat


41
42
43
# File 'lib/twilio-ruby/rest/chat.rb', line 41

def v3
  @v3 ||= V3.new self
end