Sha256: 4320bbaf9aef6ce84212536d6c386d6dcddf1191a1e3210019228e1cf0e47c37
Contents?: true
Size: 955 Bytes
Versions: 16
Compression:
Stored size: 955 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::TrunkInstance] 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
16 entries across 16 versions & 1 rubygems