public boolean equals()

in api/src/main/java/org/apache/fineract/cn/individuallending/api/v1/domain/caseinstance/CreditWorthinessSnapshot.java [87:95]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    CreditWorthinessSnapshot that = (CreditWorthinessSnapshot) o;
    return Objects.equals(forCustomer, that.forCustomer) &&
            Objects.equals(incomeSources, that.incomeSources) &&
            Objects.equals(assets, that.assets) &&
            Objects.equals(debts, that.debts);
  }