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

commonMain.socket.plugin.StoreKeys.kt Maven / Gradle / Ivy

Go to download

KMP package which exports compiled protobuf entities to be used by other repos

There is a newer version: 2.89.0
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.plugin.StoreKeys in socket/plugin.proto
package socket.plugin

import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Unit
import okio.ByteString

/**
 * Store keys schema for plugins.
 */
public class StoreKeys(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "storeKey",
  )
  public val store_key: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#BYTES",
  )
  public val payload: ByteString? = null,
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  public override fun newBuilder(): Nothing = throw
      AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")

  public override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is StoreKeys) return false
    if (unknownFields != other.unknownFields) return false
    if (store_key != other.store_key) return false
    if (payload != other.payload) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + store_key.hashCode()
      result = result * 37 + (payload?.hashCode() ?: 0)
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """store_key=${sanitize(store_key)}"""
    if (payload != null) result += """payload=$payload"""
    return result.joinToString(prefix = "StoreKeys{", separator = ", ", postfix = "}")
  }

  public fun copy(
    store_key: String = this.store_key,
    payload: ByteString? = this.payload,
    unknownFields: ByteString = this.unknownFields,
  ): StoreKeys = StoreKeys(store_key, payload, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      StoreKeys::class, 
      "type.googleapis.com/socket.plugin.StoreKeys", 
      PROTO_3, 
      null, 
      "socket/plugin.proto"
    ) {
      public override fun encodedSize(`value`: StoreKeys): Int {
        var size = value.unknownFields.size
        if (value.store_key != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1,
            value.store_key)
        size += ProtoAdapter.BYTES.encodedSizeWithTag(2, value.payload)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: StoreKeys): Unit {
        if (value.store_key != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.store_key)
        ProtoAdapter.BYTES.encodeWithTag(writer, 2, value.payload)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: StoreKeys): Unit {
        writer.writeBytes(value.unknownFields)
        ProtoAdapter.BYTES.encodeWithTag(writer, 2, value.payload)
        if (value.store_key != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.store_key)
      }

      public override fun decode(reader: ProtoReader): StoreKeys {
        var store_key: String = ""
        var payload: ByteString? = null
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> store_key = ProtoAdapter.STRING.decode(reader)
            2 -> payload = ProtoAdapter.BYTES.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return StoreKeys(
          store_key = store_key,
          payload = payload,
          unknownFields = unknownFields
        )
      }

      public override fun redact(`value`: StoreKeys): StoreKeys = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy