##
#    This code was generated by
#    ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
#     |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
#     |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
#
#    Twilio - Wireless
#    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 Wireless
            class V1 < Version
                ##
                # Initialize the V1 version of Wireless
                def initialize(domain)
                    super
                    @version = 'v1'
                    @commands = nil
                    @rate_plans = nil
                    @sims = nil
                    @usage_records = nil
                end

                ##
                # @param [String] sid The SID of the Command resource to fetch.
                # @return [Twilio::REST::Wireless::V1::CommandContext] if sid was passed.
                # @return [Twilio::REST::Wireless::V1::CommandList]
                def commands(sid=:unset)
                    if sid.nil?
                        raise ArgumentError, 'sid cannot be nil'
                    end
                    if sid == :unset
                        @commands ||= CommandList.new self
                    else
                        CommandContext.new(self, sid)
                    end
                end
                ##
                # @param [String] sid The SID of the RatePlan resource to fetch.
                # @return [Twilio::REST::Wireless::V1::RatePlanContext] if sid was passed.
                # @return [Twilio::REST::Wireless::V1::RatePlanList]
                def rate_plans(sid=:unset)
                    if sid.nil?
                        raise ArgumentError, 'sid cannot be nil'
                    end
                    if sid == :unset
                        @rate_plans ||= RatePlanList.new self
                    else
                        RatePlanContext.new(self, sid)
                    end
                end
                ##
                # @param [String] sid The SID or the `unique_name` of the Sim resource to fetch.
                # @return [Twilio::REST::Wireless::V1::SimContext] if sid was passed.
                # @return [Twilio::REST::Wireless::V1::SimList]
                def sims(sid=:unset)
                    if sid.nil?
                        raise ArgumentError, 'sid cannot be nil'
                    end
                    if sid == :unset
                        @sims ||= SimList.new self
                    else
                        SimContext.new(self, sid)
                    end
                end
                ##
                # @return [Twilio::REST::Wireless::V1::UsageRecordList]
                def usage_records
                    @usage_records ||= UsageRecordList.new self
                end
                ##
                # Provide a user friendly representation
                def to_s
                    '<Twilio::REST::Wireless::V1>';
                end
            end
        end
    end
end
