Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/main/java/com/maxmind/minfraud/response/RiskScoreReason.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*
* @param multiplier 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.
* Multipliers representing a significant percentage increase or decrease in the
* risk score lead to risk reason(s) being present.
* @param reasons An unmodifiable list containing objects that describe one of the reasons for
* the multiplier. This will be an empty list if there are no reasons.
*/
Expand All @@ -30,10 +30,10 @@ public record RiskScoreReason(
}

/**
* @return 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.
* @return 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
* representing a significant percentage increase or decrease in the risk score lead to risk
* reason(s) being present.
* @deprecated Use {@link #multiplier()} instead. This method will be removed in 5.0.0.
*/
@Deprecated(since = "4.0.0", forRemoval = true)
Expand Down
Loading