Class: Minfraud::Model::RiskScoreReason

Inherits:
Abstract
  • Object
show all
Defined in:
lib/minfraud/model/risk_score_reason.rb

Overview

The risk score multiplier and the reasons for that multiplier.

Instance Attribute Summary collapse

Instance Attribute Details

#multiplierFloat (readonly)

The factor by which the risk score is increased (if the value is greater than 1) or decreased (if the value is less than 1) for given risk reason(s). Multipliers greater than 1.5 and less than 0.66 are considered significant and lead to risk reason(s) being present.

Returns:

  • (Float)

15
16
17
# File 'lib/minfraud/model/risk_score_reason.rb', line 15

def multiplier
  @multiplier
end

#reasonsArray<Minfraud::Model::Risk> (readonly)

This field contains Risk objects that describe one of the reasons for the multiplier.

Returns:

  • (Array<Minfraud::Model::Risk>)

20
21
22
# File 'lib/minfraud/model/risk_score_reason.rb', line 20

def reasons
  @reasons
end