in src/main/java/org/openvasp/core/model/ivms101/NaturalPerson.java [216:230]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NaturalPerson naturalPerson = (NaturalPerson) o;
return Objects.equals(this.name, naturalPerson.name) &&
Objects.equals(this.geographicAddresses, naturalPerson.geographicAddresses) &&
Objects.equals(this.nationalIdentification, naturalPerson.nationalIdentification) &&
Objects.equals(this.customerIdentification, naturalPerson.customerIdentification) &&
Objects.equals(this.dateAndPlaceOfBirth, naturalPerson.dateAndPlaceOfBirth) &&
Objects.equals(this.countryOfResidence, naturalPerson.countryOfResidence);
}