in scorecard-client/src/main/java/org/apache/fineract/credit/scorecard/models/PredictionResponse.java [286:303]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PredictionResponse predictionResponse = (PredictionResponse) o;
return Objects.equals(this.probability, predictionResponse.probability) &&
Objects.equals(this.label, predictionResponse.label) &&
Objects.equals(this.method, predictionResponse.method) &&
Objects.equals(this.color, predictionResponse.color) &&
Objects.equals(this.wilkisLambda, predictionResponse.wilkisLambda) &&
Objects.equals(this.pillaisTrace, predictionResponse.pillaisTrace) &&
Objects.equals(this.hotellingTawley, predictionResponse.hotellingTawley) &&
Objects.equals(this.roysReatestRoots, predictionResponse.roysReatestRoots) &&
Objects.equals(this.requestId, predictionResponse.requestId);
}