lib/twilio-ruby/rest/ip_messaging/v2.rb in twilio-ruby-5.0.0.rc26 vs lib/twilio-ruby/rest/ip_messaging/v2.rb in twilio-ruby-5.0.0
- old
+ new
@@ -15,19 +15,27 @@
@version = 'v2'
@credentials = nil
@services = nil
end
+ ##
+ # @param [String] sid The sid
+ # @return [Twilio::REST::Chat::V2::CredentialInstance] if sid was passed.
+ # @return [Twilio::REST::Chat::V2::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::V2::ServiceInstance] if sid was passed.
+ # @return [Twilio::REST::Chat::V2::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