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

com.sksamuel.elastic4s.fields.BinaryField.scala Maven / Gradle / Ivy

The newest version!
package com.sksamuel.elastic4s.fields

object BinaryField {
  val `type`: String = "binary"
}
case class BinaryField(name: String,
                       docValues: Option[Boolean] = None,
                       store: Option[Boolean] = None) extends ElasticField {
  override def `type`: String = BinaryField.`type`
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy