Sha256: 791abe11a0ef9ed06828cf88360be3037b2d3a33a961f836aeee52da87cb8361
Contents?: true
Size: 965 Bytes
Versions: 1
Compression:
Stored size: 965 Bytes
Contents
module Experian class DataDictionary # Direct Mail Merchandise Buyer Categories def self.en_0134_column_name 'Direct Mail Merchandise Buyer Categories' end def self.en_0134_value_description(_key) '' end def self.en_0134_description 'The Direct Mail Merchandise Buyer 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_0134(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_0134.rb |