@@ -18,9 +18,6 @@ public class Event {
1818 @ JsonProperty ("runID" )
1919 private String runID ;
2020
21- @ JsonProperty ("parentID" )
22- private String parentID ;
23-
2421 @ JsonProperty ("status" )
2522 private EventStatus status ;
2623
@@ -58,17 +55,6 @@ public String getRunID() {
5855 return runID ;
5956 }
6057
61- public Event setParentID (String parentID ) {
62- this .parentID = parentID ;
63- return this ;
64- }
65-
66- /** The parent event, the cause of this event. */
67- @ javax .annotation .Nullable
68- public String getParentID () {
69- return parentID ;
70- }
71-
7258 public Event setStatus (EventStatus status ) {
7359 this .status = status ;
7460 return this ;
@@ -144,7 +130,6 @@ public boolean equals(Object o) {
144130 return (
145131 Objects .equals (this .eventID , event .eventID ) &&
146132 Objects .equals (this .runID , event .runID ) &&
147- Objects .equals (this .parentID , event .parentID ) &&
148133 Objects .equals (this .status , event .status ) &&
149134 Objects .equals (this .type , event .type ) &&
150135 Objects .equals (this .batchSize , event .batchSize ) &&
@@ -155,7 +140,7 @@ public boolean equals(Object o) {
155140
156141 @ Override
157142 public int hashCode () {
158- return Objects .hash (eventID , runID , parentID , status , type , batchSize , data , publishedAt );
143+ return Objects .hash (eventID , runID , status , type , batchSize , data , publishedAt );
159144 }
160145
161146 @ Override
@@ -164,7 +149,6 @@ public String toString() {
164149 sb .append ("class Event {\n " );
165150 sb .append (" eventID: " ).append (toIndentedString (eventID )).append ("\n " );
166151 sb .append (" runID: " ).append (toIndentedString (runID )).append ("\n " );
167- sb .append (" parentID: " ).append (toIndentedString (parentID )).append ("\n " );
168152 sb .append (" status: " ).append (toIndentedString (status )).append ("\n " );
169153 sb .append (" type: " ).append (toIndentedString (type )).append ("\n " );
170154 sb .append (" batchSize: " ).append (toIndentedString (batchSize )).append ("\n " );
0 commit comments