Sha256: 5abd0be688c96d5ae1c97145353886da3b3617f7826fd0676231ee19cbd2dde8
Contents?: true
Size: 1.58 KB
Versions: 36
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
36 entries across 36 versions & 1 rubygems