module Experian::ConnectCheck
Constants
- DB_HOST
- DB_HOST_TEST
- MATCH_CODES
Public Class Methods
check_credit(options = {})
click to toggle source
convenience method
# File lib/experian/connect_check.rb, line 24 def self.check_credit(options = {}) Client.new.check_credit(options) end
db_host()
click to toggle source
# File lib/experian/connect_check.rb, line 19 def self.db_host Experian.test_mode? ? DB_HOST_TEST : DB_HOST end