Fixed duplicated property names

This commit is contained in:
Fabio Sinibaldi 2022-04-22 11:04:50 +02:00
parent 417a014fe7
commit 069ae9c5ec
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public class Relationship {
private String relationshipName;
@JsonProperty(TARGET_ID)
private String targetID;
@JsonProperty(TARGET_ID)
@JsonProperty(TARGET_UCD)
private String targetUCD;
}