Sha256: 205cc183f5bb5f18c37a88d64381eb89bc9f938dce65ec2c2e212cc81402f655
Contents?: true
Size: 959 Bytes
Versions: 4
Compression:
Stored size: 959 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? 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