@JsonProperty("action-identifiers")
private ActionIdentifier actionIdentifiers;
+
+ @JsonProperty("target-id")
+ private String targetId;
public String getAction() {
return action;
this.actionIdentifiers = actionIdentifiers;
}
+ public String getTargetId() {
+ return targetId;
+ }
+
+ public void setTargetId(String targetId) {
+ this.targetId = targetId;
+ }
}