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-2.80.1 lib/braintree/transaction/customer_details.rb
braintree-2.80.0 lib/braintree/transaction/customer_details.rb
braintree-2.79.0 lib/braintree/transaction/customer_details.rb
braintree-2.78.0 lib/braintree/transaction/customer_details.rb
braintree-2.77.0 lib/braintree/transaction/customer_details.rb
braintree-2.76.0 lib/braintree/transaction/customer_details.rb
braintree-2.75.0 lib/braintree/transaction/customer_details.rb
braintree-2.74.0 lib/braintree/transaction/customer_details.rb
braintree-2.73.0 lib/braintree/transaction/customer_details.rb
braintree-2.72.0 lib/braintree/transaction/customer_details.rb
braintree-2.71.0 lib/braintree/transaction/customer_details.rb
braintree-2.70.0 lib/braintree/transaction/customer_details.rb
braintree-2.69.1 lib/braintree/transaction/customer_details.rb
braintree-2.69.0 lib/braintree/transaction/customer_details.rb
braintree-2.68.2 lib/braintree/transaction/customer_details.rb
braintree-2.68.1 lib/braintree/transaction/customer_details.rb
braintree-2.68.0 lib/braintree/transaction/customer_details.rb
braintree-2.67.0 lib/braintree/transaction/customer_details.rb
braintree-2.66.0 lib/braintree/transaction/customer_details.rb
braintree-2.65.0 lib/braintree/transaction/customer_details.rb