commonMain.com.algolia.search.model.multicluster.ClusterName.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch-client-kotlin-jvm Show documentation
Show all versions of algoliasearch-client-kotlin-jvm Show documentation
"Algolia is a powerful search-as-a-service solution, made easy to use with API clients, UI libraries, and pre-built integrations. Algolia API Client for Kotlin lets you easily use the Algolia Search REST API from your JVM project, such as Android or backend implementations."
package com.algolia.search.model.multicluster
import com.algolia.search.helper.toClusterName
import com.algolia.search.model.internal.Raw
import kotlinx.serialization.KSerializer
import kotlinx.serialization.Serializable
import kotlinx.serialization.builtins.serializer
import kotlinx.serialization.descriptors.SerialDescriptor
import kotlinx.serialization.encoding.Decoder
import kotlinx.serialization.encoding.Encoder
/**
* [ClusterName] of a cluster.
*/
@Serializable(ClusterName.Companion::class)
public data class ClusterName(override val raw: String) : Raw {
override fun toString(): String {
return raw
}
public companion object : KSerializer {
private val serializer = String.serializer()
override val descriptor: SerialDescriptor = serializer.descriptor
override fun serialize(encoder: Encoder, value: ClusterName) {
String.serializer().serialize(encoder, value.raw)
}
override fun deserialize(decoder: Decoder): ClusterName {
return serializer.deserialize(decoder).toClusterName()
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy