commonMain.aws.sdk.kotlin.services.wisdom.serde.RecommendationDataDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisdom-jvm Show documentation
Show all versions of wisdom-jvm Show documentation
The AWS SDK for Kotlin client for Wisdom
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wisdom.serde
import aws.sdk.kotlin.services.wisdom.model.RecommendationData
import aws.sdk.kotlin.services.wisdom.model.RecommendationType
import aws.sdk.kotlin.services.wisdom.model.RelevanceLevel
import aws.smithy.kotlin.runtime.serde.Deserializer
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun deserializeRecommendationDataDocument(deserializer: Deserializer): RecommendationData {
val builder = RecommendationData.Builder()
val DOCUMENT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("document"))
val RECOMMENDATIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("recommendationId"))
val RELEVANCELEVEL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("relevanceLevel"))
val RELEVANCESCORE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("relevanceScore"))
val TYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("type"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DOCUMENT_DESCRIPTOR)
field(RECOMMENDATIONID_DESCRIPTOR)
field(RELEVANCELEVEL_DESCRIPTOR)
field(RELEVANCESCORE_DESCRIPTOR)
field(TYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DOCUMENT_DESCRIPTOR.index -> builder.document = deserializeDocumentDocument(deserializer)
RECOMMENDATIONID_DESCRIPTOR.index -> builder.recommendationId = deserializeString()
RELEVANCELEVEL_DESCRIPTOR.index -> builder.relevanceLevel = deserializeString().let { RelevanceLevel.fromValue(it) }
RELEVANCESCORE_DESCRIPTOR.index -> builder.relevanceScore = deserializeDouble()
TYPE_DESCRIPTOR.index -> builder.type = deserializeString().let { RecommendationType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}