@Override
 public void writeTo(StreamOutput out) throws IOException {
   super.writeTo(out);
   out.writeVInt(shardId);
   out.writeVInt(totalHits);
   out.writeVInt(updated);
   out.writeVInt(bulkResponses.length);
   for (BulkItemResponse response : bulkResponses) {
     response.writeTo(out);
   }
   out.writeOptionalString(failedShardExceptionMessage);
 }