Sha256: 3f0b6d3ab963e1409fa4b2c0cec39a088593199fb876994b3d656b15dbe56a7e

Contents?: true

Size: 567 Bytes

Versions: 4

Compression:

Stored size: 567 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_value_description(key); ''; 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

4 entries across 4 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.4 lib/element_numbers/V/en_V000.rb
experian-data-dictionary-1.4.3 lib/element_numbers/en_V000.rb
experian-data-dictionary-1.4.2 lib/element_numbers/en_V000.rb
experian-data-dictionary-1.4.1 lib/element_numbers/en_V000.rb