commonMain.aws.sdk.kotlin.services.textract.serde.LendingFieldDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of textract-jvm Show documentation
Show all versions of textract-jvm Show documentation
The AWS SDK for Kotlin client for Textract
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.textract.serde
import aws.sdk.kotlin.services.textract.model.LendingDetection
import aws.sdk.kotlin.services.textract.model.LendingField
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
import kotlin.collections.mutableListOf
internal fun deserializeLendingFieldDocument(deserializer: Deserializer): LendingField {
val builder = LendingField.Builder()
val KEYDETECTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("KeyDetection"))
val TYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Type"))
val VALUEDETECTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("ValueDetections"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(KEYDETECTION_DESCRIPTOR)
field(TYPE_DESCRIPTOR)
field(VALUEDETECTIONS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
KEYDETECTION_DESCRIPTOR.index -> builder.keyDetection = deserializeLendingDetectionDocument(deserializer)
TYPE_DESCRIPTOR.index -> builder.type = deserializeString()
VALUEDETECTIONS_DESCRIPTOR.index -> builder.valueDetections =
deserializer.deserializeList(VALUEDETECTIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeLendingDetectionDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}