Class: Minfraud::Model::RiskScoreReason
- Inherits:
-
Abstract
- Object
- Abstract
- Minfraud::Model::RiskScoreReason
- Defined in:
- lib/minfraud/model/risk_score_reason.rb
Overview
The risk score multiplier and the reasons for that multiplier.
Instance Attribute Summary collapse
-
#multiplier ⇒ Float
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).
-
#reasons ⇒ Array<Minfraud::Model::Risk>
readonly
This field contains Risk objects that describe one of the reasons for the multiplier.
Instance Attribute Details
#multiplier ⇒ Float (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.
15 16 17 |
# File 'lib/minfraud/model/risk_score_reason.rb', line 15 def multiplier @multiplier end |
#reasons ⇒ Array<Minfraud::Model::Risk> (readonly)
This field contains Risk objects that describe one of the reasons for the multiplier.
20 21 22 |
# File 'lib/minfraud/model/risk_score_reason.rb', line 20 def reasons @reasons end |