Sha256: c26da3fc924f9f93c42cbe87464f58c6424e6a1f020405d4f6d2ee8192671df4
Contents?: true
Size: 881 Bytes
Versions: 1
Compression:
Stored size: 881 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? || key.to_i > 9 || key.size > 1 if key.to_i == 1 return key.to_i.to_s + ' Response' elsif key.to_i > 1 && key.to_i < 10 || key.to_i == 0 return key.to_i.to_s + ' Responses' else return nil end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
experian-data-dictionary-1.4.5 | lib/element_numbers/0100/en_0139.rb |