in services/library/src/main/java/com/google/cloud/pso/bq_snapshot_manager/entities/TableOperationRequestResponse.java [65:70]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TableOperationRequestResponse that = (TableOperationRequestResponse) o;
return isDryRun == that.isDryRun && Objects.equal(targetTable, that.targetTable) && Objects.equal(runId, that.runId) && Objects.equal(trackingId, that.trackingId);
}