Sha256: 579d9670b3f6cdbaa4b7be250a380c9d0270c0a9cc39bc0758b0ecd2f176b60f
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / 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 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 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 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.0.0.rc26 | lib/twilio-ruby/rest/wireless/v1.rb |
twilio-ruby-5.0.0.rc25 | lib/twilio-ruby/rest/wireless/v1.rb |