commonMain.aws.sdk.kotlin.services.appflow.serde.VeevaMetadataDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.serde
import aws.sdk.kotlin.services.appflow.model.VeevaMetadata
import aws.smithy.kotlin.runtime.serde.Deserializer
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.deserializeStruct
internal fun deserializeVeevaMetadataDocument(deserializer: Deserializer): VeevaMetadata {
val builder = VeevaMetadata.Builder()
deserializer.deserializeStruct(SdkObjectDescriptor.build {}) {
loop@while (true) {
when (findNextFieldIndex()) {
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}