in src/main/java/com/epam/digital/data/platform/report/model/Visualization.java [92:104]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Visualization that = (Visualization) o;
return Objects.equals(queryId, that.queryId) && Objects
.equals(name, that.name) && Objects.equals(type, that.type) && Objects
.equals(description, that.description) && Objects.equals(options, that.options)
&& Objects.equals(query, that.query);
}