Sha256: 6dc4a1e1fc6c55aac1a945ef72ac063e289d45cf57f9e8723a2fb36228814c9d
Contents?: true
Size: 1.42 KB
Versions: 16
Compression:
Stored size: 1.42 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Chat class V1 < Version ## # Initialize the V1 version of Chat def initialize(domain) super @version = 'v1' @credentials = nil @services = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Chat::V1::CredentialInstance] if sid was passed. # @return [Twilio::REST::Chat::V1::CredentialList] def credentials(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @credentials ||= CredentialList.new self else CredentialContext.new(self, sid) end end ## # @param [String] sid The sid # @return [Twilio::REST::Chat::V1::ServiceInstance] if sid was passed. # @return [Twilio::REST::Chat::V1::ServiceList] def services(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @services ||= ServiceList.new self else ServiceContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Chat::V1>' end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems