Sha256: 7b51b5f85b693248cc1df1b7c246fc52a362663c6bd792b7ea0b38e9e3c64235
Contents?: true
Size: 967 Bytes
Versions: 13
Compression:
Stored size: 967 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Fax class V1 < Version ## # Initialize the V1 version of Fax def initialize(domain) super @version = 'v1' @faxes = nil end ## # @param [String] sid A 34 character string that uniquely identifies this fax. # @return [Twilio::REST::Fax::V1::FaxContext] if sid was passed. # @return [Twilio::REST::Fax::V1::FaxList] def faxes(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @faxes ||= FaxList.new self else FaxContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Fax::V1>' end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems