
commonMain.aws.sdk.kotlin.services.lexruntimev2.serde.DialogActionDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.lexruntimev2.serde
import aws.sdk.kotlin.services.lexruntimev2.model.DialogAction
import aws.sdk.kotlin.services.lexruntimev2.model.DialogActionType
import aws.sdk.kotlin.services.lexruntimev2.model.StyleType
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 deserializeDialogActionDocument(deserializer: Deserializer): DialogAction {
val builder = DialogAction.Builder()
val SLOTELICITATIONSTYLE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("slotElicitationStyle"))
val SLOTTOELICIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("slotToElicit"))
val SUBSLOTTOELICIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("subSlotToElicit"))
val TYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("type"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(SLOTELICITATIONSTYLE_DESCRIPTOR)
field(SLOTTOELICIT_DESCRIPTOR)
field(SUBSLOTTOELICIT_DESCRIPTOR)
field(TYPE_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
SLOTELICITATIONSTYLE_DESCRIPTOR.index -> builder.slotElicitationStyle = deserializeString().let { StyleType.fromValue(it) }
SLOTTOELICIT_DESCRIPTOR.index -> builder.slotToElicit = deserializeString()
SUBSLOTTOELICIT_DESCRIPTOR.index -> builder.subSlotToElicit = deserializeElicitSubSlotDocument(deserializer)
TYPE_DESCRIPTOR.index -> builder.type = deserializeString().let { DialogActionType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy