commonMain.aws.sdk.kotlin.services.iotwireless.serde.FPortsDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.serde
import aws.sdk.kotlin.services.iotwireless.model.ApplicationConfig
import aws.sdk.kotlin.services.iotwireless.model.FPorts
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 deserializeFPortsDocument(deserializer: Deserializer): FPorts {
val builder = FPorts.Builder()
val APPLICATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Applications"))
val CLOCKSYNC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("ClockSync"))
val FUOTA_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Fuota"))
val MULTICAST_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Multicast"))
val POSITIONING_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Positioning"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(APPLICATIONS_DESCRIPTOR)
field(CLOCKSYNC_DESCRIPTOR)
field(FUOTA_DESCRIPTOR)
field(MULTICAST_DESCRIPTOR)
field(POSITIONING_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
APPLICATIONS_DESCRIPTOR.index -> builder.applications =
deserializer.deserializeList(APPLICATIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeApplicationConfigDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
CLOCKSYNC_DESCRIPTOR.index -> builder.clockSync = deserializeInt()
FUOTA_DESCRIPTOR.index -> builder.fuota = deserializeInt()
MULTICAST_DESCRIPTOR.index -> builder.multicast = deserializeInt()
POSITIONING_DESCRIPTOR.index -> builder.positioning = deserializePositioningDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy