Sha256: c0a225d5b1b6dbe8f270448c621e010fbd2759b702242c12b4a1a0ba871c6482

Contents?: true

Size: 793 Bytes

Versions: 1

Compression:

Stored size: 793 Bytes

Contents

module Experian
  class DataDictionary
    def self.en_0112_column_name
      'Deceased Indicator'
    end

    def self.en_0112_value_description(_key)
      ''
    end

    def self.en_0112_description
      'Deceased Indicator identifies client input records that Experian believes are deceased individuals. This information is sourced primarily from Social Security records and other proprietary sources, as well as consumers who may have contacted Experian directly. The deceased indicator communicates that we have reason to believe that the individual is deceased based on this source information.'
    end

    def self.en_0112(key)
      values = {
        'D' => 'Deceased Indicator',
        'blank' => 'Unknown'
      }
      key.empty? ? 'Unknown' : values[key]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.5 lib/element_numbers/0100/en_0112.rb