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

jp.co.bizreach.elasticsearch4s.ESSearchResult.scala Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package jp.co.bizreach.elasticsearch4s

case class ESSearchResult[T](
  totalHits: Long,
  tookTime: Long,
  list: List[ESSearchResultItem[T]],
  facets: Map[String, Map[String, Any]],
  aggregations: Map[String, Any],
  source: Map[String, Any]
)

case class ESSearchResultItem[T](
  id: String,
  score: Double,
  doc: T,
  highlightFields: Map[String, List[String]],
  explanation: Map[String, Any]
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy