commonMain.aws.sdk.kotlin.services.cloudsearch.serde.DoubleOptionsDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsearch-jvm Show documentation
Show all versions of cloudsearch-jvm Show documentation
The AWS SDK for Kotlin client for CloudSearch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudsearch.serde
import aws.sdk.kotlin.services.cloudsearch.model.DoubleOptions
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.formurl.FormUrlSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun serializeDoubleOptionsDocument(serializer: Serializer, input: DoubleOptions) {
val DEFAULTVALUE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, FormUrlSerialName("DefaultValue"))
val FACETENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, FormUrlSerialName("FacetEnabled"))
val RETURNENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, FormUrlSerialName("ReturnEnabled"))
val SEARCHENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, FormUrlSerialName("SearchEnabled"))
val SORTENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, FormUrlSerialName("SortEnabled"))
val SOURCEFIELD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("SourceField"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(FormUrlSerialName("DoubleOptions"))
field(DEFAULTVALUE_DESCRIPTOR)
field(FACETENABLED_DESCRIPTOR)
field(RETURNENABLED_DESCRIPTOR)
field(SEARCHENABLED_DESCRIPTOR)
field(SORTENABLED_DESCRIPTOR)
field(SOURCEFIELD_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.defaultValue?.let { field(DEFAULTVALUE_DESCRIPTOR, it) }
input.sourceField?.let { field(SOURCEFIELD_DESCRIPTOR, it) }
input.facetEnabled?.let { field(FACETENABLED_DESCRIPTOR, it) }
input.searchEnabled?.let { field(SEARCHENABLED_DESCRIPTOR, it) }
input.returnEnabled?.let { field(RETURNENABLED_DESCRIPTOR, it) }
input.sortEnabled?.let { field(SORTENABLED_DESCRIPTOR, it) }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy