io.github.sinri.keel.elasticsearch.document.ESDocumentDeleteResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.elasticsearch.document;
import io.github.sinri.keel.core.json.SimpleJsonifiableEntity;
import io.vertx.core.json.JsonObject;
public class ESDocumentDeleteResponse extends SimpleJsonifiableEntity {
public ESDocumentDeleteResponse(JsonObject jsonObject) {
super(jsonObject);
}
// TODO
/*
{
"_shards": {
"total": 2,
"failed": 0,
"successful": 2
},
"_index": "my-index-000001",
"_id": "1",
"_version": 2,
"_primary_term": 1,
"_seq_no": 5,
"result": "deleted"
}
*/
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy