lib/twilio-ruby/rest/monitor/v1.rb in twilio-ruby-5.0.0.rc26 vs lib/twilio-ruby/rest/monitor/v1.rb in twilio-ruby-5.0.0
- old
+ new
@@ -15,19 +15,27 @@
@version = 'v1'
@alerts = nil
@events = nil
end
+ ##
+ # @param [String] sid The sid
+ # @return [Twilio::REST::Monitor::V1::AlertInstance] if sid was passed.
+ # @return [Twilio::REST::Monitor::V1::AlertList]
def alerts(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
elsif sid == :unset
@alerts ||= AlertList.new self
else
AlertContext.new(self, sid)
end
end
+ ##
+ # @param [String] sid The sid
+ # @return [Twilio::REST::Monitor::V1::EventInstance] if sid was passed.
+ # @return [Twilio::REST::Monitor::V1::EventList]
def events(sid=:unset)
if sid.nil?
raise ArgumentError, 'sid cannot be nil'
elsif sid == :unset
@events ||= EventList.new self
\ No newline at end of file