algoliasearch.config.Host.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch-scala_3 Show documentation
Show all versions of algoliasearch-scala_3 Show documentation
Scala client for Algolia Search API
package algoliasearch.config
/** Represents an Algolia host.
*
* @param url
* Host url
* @param callTypes
* Whether this host should be used for read and/or write requests.
* @param scheme
* Host protocol (i.e. `http`, `https`)
* @param port
* Host port
*/
case class Host(url: String, callTypes: Set[CallType], scheme: String = "https", port: Option[Int] = None)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy