-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(specs): built-in ops accept also int (generated)
algolia/api-clients-automation#3450 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
- Loading branch information
1 parent
5d91089
commit 379dcd7
Showing
2 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
client/src/commonMain/kotlin/com/algolia/client/model/search/BuiltInOperationValue.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */ | ||
package com.algolia.client.model.search | ||
|
||
import com.algolia.client.exception.AlgoliaClientException | ||
import com.algolia.client.extensions.internal.* | ||
import kotlinx.serialization.* | ||
import kotlinx.serialization.builtins.* | ||
import kotlinx.serialization.descriptors.* | ||
import kotlinx.serialization.encoding.* | ||
import kotlinx.serialization.json.* | ||
import kotlin.jvm.JvmInline | ||
|
||
/** | ||
* BuiltInOperationValue | ||
* | ||
* Implementations: | ||
* - [Int] - *[BuiltInOperationValue.of]* | ||
* - [String] - *[BuiltInOperationValue.of]* | ||
*/ | ||
@Serializable(BuiltInOperationValueSerializer::class) | ||
public sealed interface BuiltInOperationValue { | ||
@Serializable | ||
@JvmInline | ||
public value class StringValue(public val value: String) : BuiltInOperationValue | ||
|
||
@Serializable | ||
@JvmInline | ||
public value class IntValue(public val value: Int) : BuiltInOperationValue | ||
|
||
public companion object { | ||
|
||
public fun of(value: String): BuiltInOperationValue { | ||
return StringValue(value) | ||
} | ||
public fun of(value: Int): BuiltInOperationValue { | ||
return IntValue(value) | ||
} | ||
} | ||
} | ||
|
||
internal class BuiltInOperationValueSerializer : JsonContentPolymorphicSerializer<BuiltInOperationValue>(BuiltInOperationValue::class) { | ||
override fun selectDeserializer(element: JsonElement): DeserializationStrategy<BuiltInOperationValue> { | ||
return when { | ||
element.isString -> BuiltInOperationValue.StringValue.serializer() | ||
element.isInt -> BuiltInOperationValue.IntValue.serializer() | ||
else -> throw AlgoliaClientException("Failed to deserialize json element: $element") | ||
} | ||
} | ||
} |