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

org.http4k.connect.amazon.sqs.action.KotshiDeleteMessageBatchJsonAdapter.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 com.squareup.moshi.Types.newParameterizedType
import java.io.IOException
import java.lang.StringBuilder
import kotlin.Suppress
import kotlin.apply
import kotlin.collections.List
import kotlin.collections.setOf
import kotlin.jvm.Throws
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 KotshiDeleteMessageBatchJsonAdapter(
  moshi: Moshi,
) : NamedJsonAdapter("KotshiJsonAdapter(DeleteMessageBatch)") {
  private val queueUrlAdapter: JsonAdapter = moshi.adapter(
      Uri::class.javaObjectType,
      setOf(),
      "queueUrl"
  )

  private val entriesAdapter: JsonAdapter> = moshi.adapter(
      newParameterizedType(List::class.javaObjectType, DeleteMessageBatchEntry::class.javaObjectType),
      setOf(),
      "entries"
  )

  private val options: JsonReader.Options = JsonReader.Options.of(
      "QueueUrl",
      "Entries"
  )

  @Throws(IOException::class)
  override fun toJson(writer: JsonWriter, `value`: DeleteMessageBatch?) {
    if (`value` == null) {
      writer.nullValue()
      return
    }
    writer
      .beginObject()
      .name("QueueUrl").apply {
        queueUrlAdapter.toJson(this, `value`.queueUrl)
      }
      .name("Entries").apply {
        entriesAdapter.toJson(this, `value`.entries)
      }
      .endObject()
  }

  @Throws(IOException::class)
  override fun fromJson(reader: JsonReader): DeleteMessageBatch? {
    if (reader.peek() == JsonReader.Token.NULL) return reader.nextNull()

    var queueUrl: Uri? = null
    var entries: List? = null

    reader.beginObject()
    while (reader.hasNext()) {
      when (reader.selectName(options)) {
        0 -> {
          queueUrl = queueUrlAdapter.fromJson(reader)
        }
        1 -> {
          entries = entriesAdapter.fromJson(reader)
        }
        -1 -> {
          reader.skipName()
          reader.skipValue()
        }
      }
    }
    reader.endObject()

    var errorBuilder: StringBuilder? = null
    if (queueUrl == null) {
      errorBuilder = errorBuilder.appendNullableError("queueUrl", "QueueUrl")
    }
    if (entries == null) {
      errorBuilder = errorBuilder.appendNullableError("entries", "Entries")
    }
    if (errorBuilder != null) {
      errorBuilder.append(" (at path ").append(reader.path).append(')')
      throw JsonDataException(errorBuilder.toString())
    }

    return DeleteMessageBatch(
        queueUrl = queueUrl!!,
        entries = entries!!
    )
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy