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

commonMain.socket.preset.PeerPreset.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.preset.PeerPreset in socket/preset.proto
package socket.preset

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

public class PeerPreset(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "userId",
  )
  public val user_id: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "peerId",
  )
  public val peer_id: String = "",
  @field:WireField(
    tag = 3,
    adapter = "com.squareup.wire.ProtoAdapter#BYTES",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val preset: ByteString = ByteString.EMPTY,
  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 PeerPreset) return false
    if (unknownFields != other.unknownFields) return false
    if (user_id != other.user_id) return false
    if (peer_id != other.peer_id) return false
    if (preset != other.preset) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + user_id.hashCode()
      result = result * 37 + peer_id.hashCode()
      result = result * 37 + preset.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """user_id=${sanitize(user_id)}"""
    result += """peer_id=${sanitize(peer_id)}"""
    result += """preset=$preset"""
    return result.joinToString(prefix = "PeerPreset{", separator = ", ", postfix = "}")
  }

  public fun copy(
    user_id: String = this.user_id,
    peer_id: String = this.peer_id,
    preset: ByteString = this.preset,
    unknownFields: ByteString = this.unknownFields,
  ): PeerPreset = PeerPreset(user_id, peer_id, preset, unknownFields)

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

      public override fun encode(writer: ProtoWriter, `value`: PeerPreset): Unit {
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.user_id)
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.peer_id)
        if (value.preset != ByteString.EMPTY) ProtoAdapter.BYTES.encodeWithTag(writer, 3,
            value.preset)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: PeerPreset): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.preset != ByteString.EMPTY) ProtoAdapter.BYTES.encodeWithTag(writer, 3,
            value.preset)
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.peer_id)
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.user_id)
      }

      public override fun decode(reader: ProtoReader): PeerPreset {
        var user_id: String = ""
        var peer_id: String = ""
        var preset: ByteString = ByteString.EMPTY
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> user_id = ProtoAdapter.STRING.decode(reader)
            2 -> peer_id = ProtoAdapter.STRING.decode(reader)
            3 -> preset = ProtoAdapter.BYTES.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return PeerPreset(
          user_id = user_id,
          peer_id = peer_id,
          preset = preset,
          unknownFields = unknownFields
        )
      }

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

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy