All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.serde.RegistrationVersionStatusHistoryDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.78
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.pinpointsmsvoicev2.serde

import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.RegistrationVersionStatusHistory
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 aws.smithy.kotlin.runtime.time.Instant
import aws.smithy.kotlin.runtime.time.TimestampFormat

internal fun deserializeRegistrationVersionStatusHistoryDocument(deserializer: Deserializer): RegistrationVersionStatusHistory {
    val builder = RegistrationVersionStatusHistory.Builder()
    val APPROVEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("ApprovedTimestamp"))
    val ARCHIVEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("ArchivedTimestamp"))
    val DENIEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("DeniedTimestamp"))
    val DISCARDEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("DiscardedTimestamp"))
    val DRAFTTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("DraftTimestamp"))
    val REVIEWINGTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("ReviewingTimestamp"))
    val REVOKEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("RevokedTimestamp"))
    val SUBMITTEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("SubmittedTimestamp"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(APPROVEDTIMESTAMP_DESCRIPTOR)
        field(ARCHIVEDTIMESTAMP_DESCRIPTOR)
        field(DENIEDTIMESTAMP_DESCRIPTOR)
        field(DISCARDEDTIMESTAMP_DESCRIPTOR)
        field(DRAFTTIMESTAMP_DESCRIPTOR)
        field(REVIEWINGTIMESTAMP_DESCRIPTOR)
        field(REVOKEDTIMESTAMP_DESCRIPTOR)
        field(SUBMITTEDTIMESTAMP_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                APPROVEDTIMESTAMP_DESCRIPTOR.index -> builder.approvedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                ARCHIVEDTIMESTAMP_DESCRIPTOR.index -> builder.archivedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                DENIEDTIMESTAMP_DESCRIPTOR.index -> builder.deniedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                DISCARDEDTIMESTAMP_DESCRIPTOR.index -> builder.discardedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                DRAFTTIMESTAMP_DESCRIPTOR.index -> builder.draftTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                REVIEWINGTIMESTAMP_DESCRIPTOR.index -> builder.reviewingTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                REVOKEDTIMESTAMP_DESCRIPTOR.index -> builder.revokedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                SUBMITTEDTIMESTAMP_DESCRIPTOR.index -> builder.submittedTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy