Module: Experian::ConnectCheck

Defined in:
lib/experian/connect_check.rb,
lib/experian/connect_check/client.rb,
lib/experian/connect_check/request.rb,
lib/experian/connect_check/response.rb

Defined Under Namespace

Classes: Client, Request, Response

Constant Summary collapse

MATCH_CODES =
{
  "A" => "Deceased/Non-Issued Social Security Number",
  "B" => "No Record Found",
  "C" => "ID Match",
  "D" => "ID Match to Other Name",
  "E" => "ID No Match"
}
DB_HOST =
"CIS"
DB_HOST_TEST =
"STAR"

Class Method Summary collapse

Class Method Details

.check_credit(options = {}) ⇒ Object

convenience method



24
25
26
# File 'lib/experian/connect_check.rb', line 24

def self.check_credit(options = {})
  Client.new.check_credit(options)
end

.db_hostObject



19
20
21
# File 'lib/experian/connect_check.rb', line 19

def self.db_host
  Experian.test_mode? ? DB_HOST_TEST : DB_HOST
end