Sha256: 3b1a10a8c7f746c1b873b69f4d761da912cc6e989e6290453c3fce7c706aa0fa
Contents?: true
Size: 954 Bytes
Versions: 13
Compression:
Stored size: 954 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Trunking class V1 < Version ## # Initialize the V1 version of Trunking def initialize(domain) super @version = 'v1' @trunks = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Trunking::V1::TrunkContext] if sid was passed. # @return [Twilio::REST::Trunking::V1::TrunkList] def trunks(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @trunks ||= TrunkList.new self else TrunkContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Trunking::V1>' end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems