Sha256: ccc1189c85b862383c37bb0df07bc03b38ddab8023f6a25f9d1091ce549ae876

Contents?: true

Size: 877 Bytes

Versions: 3

Compression:

Stored size: 877 Bytes

Contents

module Experian
  class DataDictionary

    # MOR Bank- Deduped Hit Count
    def self.en_0132a_column_name
      'MOR Bank- Deduped Hit Count'
    end

    def self.en_0132a_description
      'The total number of categories in which the living unit has at least one hit, but with any specific participant counted in only one category.'
    end

    def self.en_0132a(key)
      return 'Unknown' if key.size != 3 or key.to_i > 999
      key
    end
    
    #MOR Bank- Non-Deduped Hit Count
    def self.en_0132b_column_name
      'MOR Bank- Non-Deduped Hit Count'
    end

    def self.en_0132b_description
      'The total number of categories in which the living unit has at least one hit, with participant hits counted in all applicable categories.'
    end

    def self.en_0132b(key)
      return 'Unknown' if key.size != 3 or key.to_i > 999
      key
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4 lib/element_numbers/en_0132.rb
experian-data-dictionary-1.3 lib/element_numbers/en_0132.rb
experian-data-dictionary-1.2 lib/element_numbers/en_0132.rb