Sha256: 6bfbe0d0cc6121c9e72661facc24de7231f05ff4bf24bddd02e4be97430e8a57

Contents?: true

Size: 875 Bytes

Versions: 4

Compression:

Stored size: 875 Bytes

Contents

module Experian
  class DataDictionary

    def self.en_0139_column_name
      'News & Financial'
    end

    def self.en_0139_value_description(key); ''; end

    def self.en_0139_description
      'The News & Financial Categories information is compiled via mail order responsiveness by categorized offers/media. Information is collected from 300+ proprietary participants who give us mail order responders and we subsequently categorize them into 1 of 25 categories. No single participant\'s information may exceed 25% of any category.'
    end

    def self.en_0139(key)
      return 'Unknown' if key.empty? or key.to_i > 9 or key.size > 1

      if key.to_i == 1
        return key.to_i.to_s + ' Response'
      elsif key.to_i > 1 and key.to_i < 10 or key.to_i == 0
        return key.to_i.to_s + ' Responses'
      else
        return nil
      end
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.4 lib/element_numbers/0100/en_0139.rb
experian-data-dictionary-1.4.3 lib/element_numbers/en_0139.rb
experian-data-dictionary-1.4.2 lib/element_numbers/en_0139.rb
experian-data-dictionary-1.4.1 lib/element_numbers/en_0139.rb