commonMain.aws.sdk.kotlin.services.medicalimaging.serde.SearchCriteriaPayloadSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of medicalimaging-jvm Show documentation
Show all versions of medicalimaging-jvm Show documentation
The AWS SDK for Kotlin client for Medical Imaging
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.medicalimaging.serde
import aws.sdk.kotlin.services.medicalimaging.model.SearchCriteria
import aws.smithy.kotlin.runtime.serde.json.JsonSerializer
internal fun serializeSearchCriteriaPayload(input: SearchCriteria): ByteArray {
val serializer = JsonSerializer()
serializeSearchCriteriaDocument(serializer, input)
return serializer.toByteArray()
}