org.http4k.connect.amazon.sqs.action.KotshiDeleteMessageDataJsonAdapter.kt Maven / Gradle / Ivy
// Code generated by Kotshi. Do not edit.
package org.http4k.connect.amazon.sqs.action
import com.squareup.moshi.JsonAdapter
import com.squareup.moshi.JsonDataException
import com.squareup.moshi.JsonReader
import com.squareup.moshi.JsonWriter
import com.squareup.moshi.Moshi
import java.io.IOException
import java.lang.StringBuilder
import kotlin.Suppress
import kotlin.apply
import kotlin.collections.setOf
import kotlin.jvm.Throws
import org.http4k.connect.amazon.sqs.model.ReceiptHandle
import org.http4k.core.Uri
import se.ansman.kotshi.InternalKotshiApi
import se.ansman.kotshi.KotshiUtils.appendNullableError
import se.ansman.kotshi.NamedJsonAdapter
@InternalKotshiApi
@Suppress(
"DEPRECATION",
"unused",
"ClassName",
"REDUNDANT_PROJECTION",
"RedundantExplicitType",
"LocalVariableName",
"RedundantVisibilityModifier",
"PLATFORM_CLASS_MAPPED_TO_KOTLIN",
"IMPLICIT_NOTHING_TYPE_ARGUMENT_IN_RETURN_POSITION",
"EXPERIMENTAL_API_USAGE",
"OPT_IN_USAGE",
)
internal class KotshiDeleteMessageDataJsonAdapter(
moshi: Moshi,
) : NamedJsonAdapter("KotshiJsonAdapter(DeleteMessageData)") {
private val queueUrlAdapter: JsonAdapter = moshi.adapter(
Uri::class.javaObjectType,
setOf(),
"QueueUrl"
)
private val receiptHandleAdapter: JsonAdapter = moshi.adapter(
ReceiptHandle::class.javaObjectType,
setOf(),
"ReceiptHandle"
)
private val options: JsonReader.Options = JsonReader.Options.of(
"QueueUrl",
"ReceiptHandle"
)
@Throws(IOException::class)
override fun toJson(writer: JsonWriter, `value`: DeleteMessageData?) {
if (`value` == null) {
writer.nullValue()
return
}
writer
.beginObject()
.name("QueueUrl").apply {
queueUrlAdapter.toJson(this, `value`.QueueUrl)
}
.name("ReceiptHandle").apply {
receiptHandleAdapter.toJson(this, `value`.ReceiptHandle)
}
.endObject()
}
@Throws(IOException::class)
override fun fromJson(reader: JsonReader): DeleteMessageData? {
if (reader.peek() == JsonReader.Token.NULL) return reader.nextNull()
var queueUrl: Uri? = null
var receiptHandle: ReceiptHandle? = null
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> {
queueUrl = queueUrlAdapter.fromJson(reader)
}
1 -> {
receiptHandle = receiptHandleAdapter.fromJson(reader)
}
-1 -> {
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
var errorBuilder: StringBuilder? = null
if (queueUrl == null) {
errorBuilder = errorBuilder.appendNullableError("QueueUrl")
}
if (receiptHandle == null) {
errorBuilder = errorBuilder.appendNullableError("ReceiptHandle")
}
if (errorBuilder != null) {
errorBuilder.append(" (at path ").append(reader.path).append(')')
throw JsonDataException(errorBuilder.toString())
}
return DeleteMessageData(
QueueUrl = queueUrl!!,
ReceiptHandle = receiptHandle!!
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy