Sha256: 730eee5840b9f286cddb01733f24a8ed1d1c483b9f1dec40dad6ff7b609e9fa0
Contents?: true
Size: 1.36 KB
Versions: 28
Compression:
Stored size: 1.36 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / 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 The sid # @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 The sid # @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 The sid # @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
28 entries across 28 versions & 1 rubygems