Sha256: e938a3303539f19394ac071129004d42073373288ddb15c6df65a925569bd3b1

Contents?: true

Size: 513 Bytes

Versions: 3

Compression:

Stored size: 513 Bytes

Contents

module Experian
  class DataDictionary

    # New Median Mandatory Append
    def self.en_v000_column_name
      'New Median Mandatory Append'
    end

    def self.en_v000_description
      'The New Median mandatory append is required when any data from the New Median file is appended. It consists of a match level.'
    end

    def self.en_v000(key)
      values = {
        'Z' => 'Zip Level Match',
        '4' => 'Zip +4 Level Match'
      }
      key.empty? ? 'Non-match' : values[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_V000.rb
experian-data-dictionary-1.3 lib/element_numbers/en_V000.rb
experian-data-dictionary-1.2 lib/element_numbers/en_V000.rb