lib/twilio-ruby/rest/chat/v1.rb in twilio-ruby-5.0.0.rc26 vs lib/twilio-ruby/rest/chat/v1.rb in twilio-ruby-5.0.0
- old
+ new
@@ -15,19 +15,27 @@
@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
\ No newline at end of file