##
#    This code was generated by
#    ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
#     |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
#     |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
#
#    Twilio - Monitor
#    This is the public Twilio REST API.
#
#    NOTE: This class is auto generated by OpenAPI Generator.
#    https://openapi-generator.tech
#    Do not edit the class manually.
#

module Twilio
    module REST
        class Monitor
            class V1 < Version
                ##
                # Initialize the V1 version of Monitor
                def initialize(domain)
                    super
                    @version = 'v1'
                    @alerts = nil
                    @events = nil
                end

                ##
                # @param [String] sid The SID of the Alert resource to fetch.
                # @return [Twilio::REST::Monitor::V1::AlertContext] if sid was passed.
                # @return [Twilio::REST::Monitor::V1::AlertList]
                def alerts(sid=:unset)
                    if sid.nil?
                        raise ArgumentError, 'sid cannot be nil'
                    end
                    if sid == :unset
                        @alerts ||= AlertList.new self
                    else
                        AlertContext.new(self, sid)
                    end
                end
                ##
                # @param [String] sid The SID of the Event resource to fetch.
                # @return [Twilio::REST::Monitor::V1::EventContext] if sid was passed.
                # @return [Twilio::REST::Monitor::V1::EventList]
                def events(sid=:unset)
                    if sid.nil?
                        raise ArgumentError, 'sid cannot be nil'
                    end
                    if sid == :unset
                        @events ||= EventList.new self
                    else
                        EventContext.new(self, sid)
                    end
                end
                ##
                # Provide a user friendly representation
                def to_s
                    '<Twilio::REST::Monitor::V1>';
                end
            end
        end
    end
end
