commonMain.aws.sdk.kotlin.services.lexruntimeservice.serde.ActiveContextDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lexruntimeservice-jvm Show documentation
Show all versions of lexruntimeservice-jvm Show documentation
The AWS Kotlin client for Lex Runtime Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.lexruntimeservice.serde
import aws.sdk.kotlin.services.lexruntimeservice.model.ActiveContext
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.Serializer
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 serializeActiveContextDocument(serializer: Serializer, input: ActiveContext) {
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("name"))
val PARAMETERS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("parameters"))
val TIMETOLIVE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("timeToLive"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(NAME_DESCRIPTOR)
field(PARAMETERS_DESCRIPTOR)
field(TIMETOLIVE_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(NAME_DESCRIPTOR, input.name)
input.timeToLive?.let { field(TIMETOLIVE_DESCRIPTOR, it, ::serializeActiveContextTimeToLiveDocument) }
mapField(PARAMETERS_DESCRIPTOR) {
input.parameters.forEach { (key, value) ->
entry(key, value)
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy