public boolean equals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/MaintainableArtefactImpl.java [97:109]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof MaintainableArtefact)) {
            return false;
        }
        MaintainableArtefact that = (MaintainableArtefact) o;
        return Objects.equals(getId(), that.getId())
            && Objects.equals(getOrganizationId(), that.getOrganizationId())
            && Objects.equals(getVersion(), that.getVersion())
            && Objects.equals(getStructureClass(), that.getStructureClass());
    }