commonMain.aws.sdk.kotlin.services.iotsitewise.serde.AggregatesDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.serde
import aws.sdk.kotlin.services.iotsitewise.model.Aggregates
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 deserializeAggregatesDocument(deserializer: Deserializer): Aggregates {
val builder = Aggregates.Builder()
val AVERAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("average"))
val COUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("count"))
val MAXIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("maximum"))
val MINIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("minimum"))
val STANDARDDEVIATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("standardDeviation"))
val SUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("sum"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AVERAGE_DESCRIPTOR)
field(COUNT_DESCRIPTOR)
field(MAXIMUM_DESCRIPTOR)
field(MINIMUM_DESCRIPTOR)
field(STANDARDDEVIATION_DESCRIPTOR)
field(SUM_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AVERAGE_DESCRIPTOR.index -> builder.average = deserializeDouble()
COUNT_DESCRIPTOR.index -> builder.count = deserializeDouble()
MAXIMUM_DESCRIPTOR.index -> builder.maximum = deserializeDouble()
MINIMUM_DESCRIPTOR.index -> builder.minimum = deserializeDouble()
STANDARDDEVIATION_DESCRIPTOR.index -> builder.standardDeviation = deserializeDouble()
SUM_DESCRIPTOR.index -> builder.sum = deserializeDouble()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy