# File lib/whois/record/parser/whois.tld.ee.rb, line 121
          def contact(element, type)
            node(element) do |raw|
              Record::Contact.new(
                :id             => element,
                :type           => type,
                :name           => raw['name'],
                :organization   => raw['org'],
                :created_on     => Time.parse(raw['created'])
              )
            end
          end