Module: Kount

Defined in:
lib/kount.rb,
lib/kount/error.rb,
lib/kount/request.rb,
lib/kount/version.rb,
lib/kount/defaults.rb,
lib/kount/response.rb,
lib/kount/risk_inquiry.rb

Defined Under Namespace

Classes: Error, Request, Response, RiskInquiry

Constant Summary collapse

VERSION =
"0.0.1"
API_VERSION =
'0555'
KOUNT_SERVER_URLS =
{
  :api => {
    :test =>       'https://api.test.kount.net/rpc/',
    :production => 'https://api.kount.net/rpc/'
  },
  :risk => {
    :test =>       'https://risk.test.kount.net',
    :production => 'https://risk.kount.net'
  }
}

Class Attribute Summary collapse

Class Attribute Details

.api_certObject

Returns the value of attribute api_cert.



12
13
14
# File 'lib/kount.rb', line 12

def api_cert
  @api_cert
end

.api_cert_keyObject

Returns the value of attribute api_cert_key.



13
14
15
# File 'lib/kount.rb', line 13

def api_cert_key
  @api_cert_key
end

.merchant_idObject

Returns the value of attribute merchant_id.



17
18
19
# File 'lib/kount.rb', line 17

def merchant_id
  @merchant_id
end

.modeObject

Returns the value of attribute mode.



16
17
18
# File 'lib/kount.rb', line 16

def mode
  @mode
end

.ris_certObject

Returns the value of attribute ris_cert.



14
15
16
# File 'lib/kount.rb', line 14

def ris_cert
  @ris_cert
end

.ris_cert_keyObject

Returns the value of attribute ris_cert_key.



15
16
17
# File 'lib/kount.rb', line 15

def ris_cert_key
  @ris_cert_key
end