public boolean equals()

in scorecard-client/src/main/java/org/apache/fineract/credit/scorecard/models/PredictionRequest.java [282:299]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PredictionRequest predictionRequest = (PredictionRequest) o;
    return Objects.equals(this.id, predictionRequest.id) &&
        Objects.equals(this.input, predictionRequest.input) &&
        Objects.equals(this.response, predictionRequest.response) &&
        Objects.equals(this.prediction, predictionRequest.prediction) &&
        Objects.equals(this.feedback, predictionRequest.feedback) &&
        Objects.equals(this.notes, predictionRequest.notes) &&
        Objects.equals(this.createdAt, predictionRequest.createdAt) &&
        Objects.equals(this.createdBy, predictionRequest.createdBy) &&
        Objects.equals(this.algorithm, predictionRequest.algorithm);
  }