Skip to content

Commit

Permalink
fix(specs): remove from ingestion specs [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3981

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
  • Loading branch information
algolia-bot and shortcuts committed Oct 17, 2024
1 parent a755bc0 commit a604c33
Showing 1 changed file with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ public class Event {
@JsonProperty("runID")
private String runID;

@JsonProperty("parentID")
private String parentID;

@JsonProperty("status")
private EventStatus status;

Expand Down Expand Up @@ -58,17 +55,6 @@ public String getRunID() {
return runID;
}

public Event setParentID(String parentID) {
this.parentID = parentID;
return this;
}

/** The parent event, the cause of this event. */
@javax.annotation.Nullable
public String getParentID() {
return parentID;
}

public Event setStatus(EventStatus status) {
this.status = status;
return this;
Expand Down Expand Up @@ -144,7 +130,6 @@ public boolean equals(Object o) {
return (
Objects.equals(this.eventID, event.eventID) &&
Objects.equals(this.runID, event.runID) &&
Objects.equals(this.parentID, event.parentID) &&
Objects.equals(this.status, event.status) &&
Objects.equals(this.type, event.type) &&
Objects.equals(this.batchSize, event.batchSize) &&
Expand All @@ -155,7 +140,7 @@ public boolean equals(Object o) {

@Override
public int hashCode() {
return Objects.hash(eventID, runID, parentID, status, type, batchSize, data, publishedAt);
return Objects.hash(eventID, runID, status, type, batchSize, data, publishedAt);
}

@Override
Expand All @@ -164,7 +149,6 @@ public String toString() {
sb.append("class Event {\n");
sb.append(" eventID: ").append(toIndentedString(eventID)).append("\n");
sb.append(" runID: ").append(toIndentedString(runID)).append("\n");
sb.append(" parentID: ").append(toIndentedString(parentID)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" batchSize: ").append(toIndentedString(batchSize)).append("\n");
Expand Down

0 comments on commit a604c33

Please sign in to comment.