Sha256: a63f37287330b73a0c3cb694209c7b75469af4c03c176aacc0145759d5e6888b
Contents?: true
Size: 1.66 KB
Versions: 47
Compression:
Stored size: 1.66 KB
Contents
## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Trunking # This is the public Twilio REST API. # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # 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 unique string that we created to identify the Trunk resource to fetch. # @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' end if 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
47 entries across 47 versions & 2 rubygems