in src/main/java/org/openvasp/client/model/NaturalPersonId.java [64:75]
public static NatIdType fromId(int id) {
for (val item : NatIdType.values()) {
if (item.id == id) {
return item;
}
}
throw new NoSuchElementException(String.format(
"%s with id = %d does not exist",
NatIdType.class.getName(),
id));
}