Sha256: 14ec8a1d98badad0dabec848a9c2be42b32fd3b56e17674aa4a58cfd6254abcc

Contents?: true

Size: 597 Bytes

Versions: 105

Compression:

Stored size: 597 Bytes

Contents

module Braintree
  class Transaction
    class CustomerDetails # :nodoc:
      include BaseModule

      attr_reader :company, :email, :fax, :first_name, :id, :last_name, :phone, :website

      def initialize(attributes)
        set_instance_variables_from_hash attributes unless attributes.nil?
      end

      def inspect
        attr_order = [:id, :first_name, :last_name, :email, :company, :website, :phone, :fax]
        formatted_attrs = attr_order.map do |attr|
          "#{attr}: #{send(attr).inspect}"
        end
        "#<#{formatted_attrs.join(", ")}>"
      end
    end
  end
end

Version data entries

105 entries across 105 versions & 1 rubygems

Version Path
braintree-1.2.0 lib/braintree/transaction/customer_details.rb
braintree-1.1.3 lib/braintree/transaction/customer_details.rb
braintree-1.1.2 lib/braintree/transaction/customer_details.rb
braintree-1.1.1 lib/braintree/transaction/customer_details.rb
braintree-1.1.0 lib/braintree/transaction/customer_details.rb