File tree Expand file tree Collapse file tree 2 files changed +0
-19
lines changed
client/src/commonMain/kotlin/com/algolia/client/model/ingestion Expand file tree Collapse file tree 2 files changed +0
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import kotlinx.serialization.json.*
1414 *
1515 * Implementations:
1616 * - [DestinationIndexName]
17- * - [DestinationIndexPrefix]
1817 */
1918@Serializable(DestinationInputSerializer ::class )
2019public sealed interface DestinationInput {
@@ -26,7 +25,6 @@ public sealed interface DestinationInput {
2625internal class DestinationInputSerializer : JsonContentPolymorphicSerializer <DestinationInput >(DestinationInput : :class) {
2726 override fun selectDeserializer (element : JsonElement ): DeserializationStrategy <DestinationInput > {
2827 return when {
29- element is JsonObject -> DestinationIndexPrefix .serializer()
3028 element is JsonObject -> DestinationIndexName .serializer()
3129 else -> throw AlgoliaClientException (" Failed to deserialize json element: $element " )
3230 }
You can’t perform that action at this time.
0 commit comments