Sha256: a1e6469d38145ea91631ced7c289d483e84805fc34617070b1d510df2490f5d7

Contents?: true

Size: 940 Bytes

Versions: 8

Compression:

Stored size: 940 Bytes

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /
# 
# frozen_string_literal: true

module Twilio
  module REST
    class Fax < Domain
      ##
      # Initialize the Fax Domain
      def initialize(twilio)
        super

        @base_url = 'https://fax.twilio.com'
        @host = 'fax.twilio.com'
        @port = 443

        # Versions
        @v1 = nil
      end

      ##
      # Version v1 of fax
      def v1
        @v1 ||= V1.new self
      end

      ##
      # @param [String] sid The unique string that we created to identify the Fax
      #   resource.
      # @return [Twilio::REST::Fax::V1::FaxInstance] if sid was passed.
      # @return [Twilio::REST::Fax::V1::FaxList]
      def faxes(sid=:unset)
        self.v1.faxes(sid)
      end

      ##
      # Provide a user friendly representation
      def to_s
        '#<Twilio::REST::Fax>'
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
twilio-ruby-5.23.0 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.22.3 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.22.2 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.22.1 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.22.0 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.21.2 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.21.1 lib/twilio-ruby/rest/fax.rb
twilio-ruby-5.21.0 lib/twilio-ruby/rest/fax.rb