All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.elastic4s.requests.delete.DeleteResponse.scala Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
package com.sksamuel.elastic4s.requests.delete

import com.fasterxml.jackson.annotation.JsonProperty
import com.sksamuel.elastic4s.requests.common.{DocumentRef, Shards}

case class DeleteResponse(@JsonProperty("_shards") shards: Shards,
                          @JsonProperty("_index") index: String,
                          @JsonProperty("_id") id: String,
                          @JsonProperty("_version") version: Long,
                          result: String) {
  def ref: DocumentRef = DocumentRef(index, id)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy