Sha256: f4a4869b6b997bd2be40b0a91aafd2ed5107cd7ceb52e28278dd90779bb415a1
Contents?: true
Size: 1.91 KB
Versions: 25
Compression:
Stored size: 1.91 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true 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 end ## # @param [String] sid The sid # @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' elsif sid == :unset @commands ||= CommandList.new self else CommandContext.new(self, sid) end end ## # @param [String] sid The sid # @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' elsif sid == :unset @rate_plans ||= RatePlanList.new self else RatePlanContext.new(self, sid) end end ## # @param [String] sid The sid # @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' elsif sid == :unset @sims ||= SimList.new self else SimContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Wireless::V1>' end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems