in tests-creation/backfill-service/java/src/main/java/com/epam/aicode/java/Account.java [49:59]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Account other = (Account) obj;
return Objects.equals(accountId, other.accountId) && Objects.equals(currentAmount, other.currentAmount)
&& Objects.equals(updateDate, other.updateDate);
}