commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.serde.RegistrationVersionInformationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.serde
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.RegistrationDeniedReasonInformation
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.RegistrationVersionInformation
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.RegistrationVersionStatus
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 deserializeRegistrationVersionInformationDocument(deserializer: Deserializer): RegistrationVersionInformation {
val builder = RegistrationVersionInformation.Builder()
val DENIEDREASONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("DeniedReasons"))
val REGISTRATIONVERSIONSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RegistrationVersionStatus"))
val REGISTRATIONVERSIONSTATUSHISTORY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("RegistrationVersionStatusHistory"))
val VERSIONNUMBER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("VersionNumber"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DENIEDREASONS_DESCRIPTOR)
field(REGISTRATIONVERSIONSTATUS_DESCRIPTOR)
field(REGISTRATIONVERSIONSTATUSHISTORY_DESCRIPTOR)
field(VERSIONNUMBER_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DENIEDREASONS_DESCRIPTOR.index -> builder.deniedReasons =
deserializer.deserializeList(DENIEDREASONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeRegistrationDeniedReasonInformationDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
REGISTRATIONVERSIONSTATUS_DESCRIPTOR.index -> builder.registrationVersionStatus = deserializeString().let { RegistrationVersionStatus.fromValue(it) }
REGISTRATIONVERSIONSTATUSHISTORY_DESCRIPTOR.index -> builder.registrationVersionStatusHistory = deserializeRegistrationVersionStatusHistoryDocument(deserializer)
VERSIONNUMBER_DESCRIPTOR.index -> builder.versionNumber = deserializeLong()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}