in ddm-notification-service-api/src/main/java/com/epam/digital/data/platform/notification/dto/inbox/InboxOffsetBasedPageRequest.java [103:114]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
InboxOffsetBasedPageRequest other = (InboxOffsetBasedPageRequest) obj;
return this.limit == other.limit && this.offset == other.offset;
}