commonMain.aws.sdk.kotlin.services.iotwireless.serde.GsmObjDocumentSerializer.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.GsmObj
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 serializeGsmObjDocument(serializer: Serializer, input: GsmObj) {
val GERANCID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("GeranCid"))
val GSMLOCALID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("GsmLocalId"))
val GSMNMR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("GsmNmr"))
val GSMTIMINGADVANCE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("GsmTimingAdvance"))
val LAC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Lac"))
val MCC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Mcc"))
val MNC_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Mnc"))
val RXLEVEL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("RxLevel"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(GERANCID_DESCRIPTOR)
field(GSMLOCALID_DESCRIPTOR)
field(GSMNMR_DESCRIPTOR)
field(GSMTIMINGADVANCE_DESCRIPTOR)
field(LAC_DESCRIPTOR)
field(MCC_DESCRIPTOR)
field(MNC_DESCRIPTOR)
field(RXLEVEL_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(MCC_DESCRIPTOR, input.mcc)
field(MNC_DESCRIPTOR, input.mnc)
field(LAC_DESCRIPTOR, input.lac)
field(GERANCID_DESCRIPTOR, input.geranCid)
input.gsmLocalId?.let { field(GSMLOCALID_DESCRIPTOR, it, ::serializeGsmLocalIdDocument) }
input.gsmTimingAdvance?.let { field(GSMTIMINGADVANCE_DESCRIPTOR, it) }
input.rxLevel?.let { field(RXLEVEL_DESCRIPTOR, it) }
if (input.gsmNmr != null) {
listField(GSMNMR_DESCRIPTOR) {
for (el0 in input.gsmNmr) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeGsmNmrObjDocument))
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy