Sha256: 0f219b0c7c5ce801eb690b0d551417fc8d3649585367a9cd64bf80af54a6e86f
Contents?: true
Size: 1.24 KB
Versions: 55
Compression:
Stored size: 1.24 KB
Contents
module Twilio module REST class Chat < ChatBase ## # @param [String] sid The unique string that we created to identify the Credential # resource. # @return [Twilio::REST::Chat::V2::CredentialInstance] if sid was passed. # @return [Twilio::REST::Chat::V2::CredentialList] def credentials(sid=:unset) warn "credentials is deprecated. Use v2.credentials instead." self.v2.credentials(sid) end ## # @param [String] sid The unique string that we created to identify the Service # resource. # @return [Twilio::REST::Chat::V2::ServiceInstance] if sid was passed. # @return [Twilio::REST::Chat::V2::ServiceList] def services(sid=:unset) warn "services is deprecated. Use v2.services instead." self.v2.services(sid) end ## # @param [String] sid The unique string that we created to identify the Channel # resource. # @return [Twilio::REST::Chat::V3::ChannelInstance] if sid was passed. # @return [Twilio::REST::Chat::V3::ChannelList] def channels(service_sid=:unset, sid=:unset) warn "channels is deprecated. Use v3.channels instead." self.v3.channels(service_sid, sid) end end end end
Version data entries
55 entries across 55 versions & 2 rubygems