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

com.sksamuel.elastic4s.requests.synonyms.ListSynonymsSetRequest.scala Maven / Gradle / Ivy

The newest version!
package com.sksamuel.elastic4s.requests.synonyms

case class ListSynonymsSetRequest(from: Option[Int], size: Option[Int]) {
  def from(from: Int): ListSynonymsSetRequest = copy(from = Some(from))
  def size(size: Int): ListSynonymsSetRequest = copy(size = Some(size))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy