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

com.sksamuel.elastic4s.Indexable.scala Maven / Gradle / Ivy

There is a newer version: 8.15.4
Show newest version
package com.sksamuel.elastic4s

/**
  * A typeclass that is used by index/update requests to convert a scala type
  * into a document that elasticsearch can use.
  *
  * Indexables can be automatically derived if you add a deriving module like
  * `elastic4s-json-jackson` or `elastic4s-json-circe`.
  */
trait Indexable[T] {
  def json(t: T): String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy