Sha256: 97ebb2b07bac915980c69880b5daa17cf141b5e863b58ed7fa16ec00cdd1ca8c

Contents?: true

Size: 725 Bytes

Versions: 4

Compression:

Stored size: 725 Bytes

Contents

module Experian
  class DataDictionary

    def self.en_0000_column_name
      'Enhancement Mandatory Append'
    end

    def self.en_0000_description
      'The enrichment mandatory append is required when any data from the enrichment master file is appended. It consists of a match type.'
    end

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

    def self.en_0000(key)
      values = {
        'H' => 'Household Match',
        'F' => 'Household Match',
        'P' => 'Person Match',
        'I' => 'Person Match',
        'G' => 'Geographic or Area Level Match',
        'E' => 'Geographic or Area Level Match',
        'N' => 'Non-match'
      }
      key.empty? ? 'Non-match' : values[key]
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.4 lib/element_numbers/0000/en_0000.rb
experian-data-dictionary-1.4.3 lib/element_numbers/en_0000.rb
experian-data-dictionary-1.4.2 lib/element_numbers/en_0000.rb
experian-data-dictionary-1.4.1 lib/element_numbers/en_0000.rb