in api/src/main/java/org/apache/fineract/cn/portfolio/api/v1/domain/AccountAssignment.java [96:104]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AccountAssignment that = (AccountAssignment) o;
return Objects.equals(designator, that.designator) &&
Objects.equals(accountIdentifier, that.accountIdentifier) &&
Objects.equals(ledgerIdentifier, that.ledgerIdentifier) &&
Objects.equals(alternativeAccountNumber, that.alternativeAccountNumber);
}