We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633f9b2 commit ab71e77Copy full SHA for ab71e77
ipp-v3-java-data/src/main/java/com/intuit/ipp/data/Entity.java
@@ -24,6 +24,7 @@ public class Entity {
24
String id;
25
String operation;
26
String lastUpdated;
27
+ String deletedId;
28
29
public String getName() {
30
return name;
@@ -57,4 +58,11 @@ public void setLastUpdated(String lastUpdated) {
57
58
this.lastUpdated = lastUpdated;
59
}
60
61
+ public String getDeletedId() {
62
+ return deletedId;
63
+ }
64
+
65
+ public void setDeletedId(String deletedId) {
66
+ this.deletedId = deletedId;
67
68
0 commit comments