Sha256: 6d9cc4007480d10375ac8dc177e5f5131a694a557fac6a65a8d430fab93599fe
Contents?: true
Size: 1.58 KB
Versions: 3
Compression:
Stored size: 1.58 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Wireless < Domain ## # Initialize the Wireless Domain def initialize(twilio) super @base_url = 'https://wireless.twilio.com' @host = 'wireless.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of wireless def v1 @v1 ||= V1.new self end ## # @param [String] sid A 34 character string that uniquely identifies this # resource. # @return [Twilio::REST::Wireless::V1::CommandInstance] if sid was passed. # @return [Twilio::REST::Wireless::V1::CommandList] def commands(sid=:unset) self.v1.commands(sid) end ## # @param [String] sid A 34 character string that uniquely identifies this # resource. # @return [Twilio::REST::Wireless::V1::RatePlanInstance] if sid was passed. # @return [Twilio::REST::Wireless::V1::RatePlanList] def rate_plans(sid=:unset) self.v1.rate_plans(sid) end ## # @param [String] sid A 34 character string that uniquely identifies this # resource. # @return [Twilio::REST::Wireless::V1::SimInstance] if sid was passed. # @return [Twilio::REST::Wireless::V1::SimList] def sims(sid=:unset) self.v1.sims(sid) end ## # Provide a user friendly representation def to_s '#<Twilio::REST::Wireless>' end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.25.0 | lib/twilio-ruby/rest/wireless.rb |
twilio-ruby-5.24.0 | lib/twilio-ruby/rest/wireless.rb |
twilio-ruby-5.23.1 | lib/twilio-ruby/rest/wireless.rb |