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

commonMain.socket.polls.VotePollRequest.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.polls.VotePollRequest in socket/polls.proto
package socket.polls

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 VotePollRequest(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "pollId",
  )
  public val poll_id: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#UINT64",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val index: Long = 0L,
  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 VotePollRequest) return false
    if (unknownFields != other.unknownFields) return false
    if (poll_id != other.poll_id) return false
    if (index != other.index) return false
    return true
  }

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

  public override fun toString(): String {
    val result = mutableListOf()
    result += """poll_id=${sanitize(poll_id)}"""
    result += """index=$index"""
    return result.joinToString(prefix = "VotePollRequest{", separator = ", ", postfix = "}")
  }

  public fun copy(
    poll_id: String = this.poll_id,
    index: Long = this.index,
    unknownFields: ByteString = this.unknownFields,
  ): VotePollRequest = VotePollRequest(poll_id, index, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      VotePollRequest::class, 
      "type.googleapis.com/socket.polls.VotePollRequest", 
      PROTO_3, 
      null, 
      "socket/polls.proto"
    ) {
      public override fun encodedSize(`value`: VotePollRequest): Int {
        var size = value.unknownFields.size
        if (value.poll_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.poll_id)
        if (value.index != 0L) size += ProtoAdapter.UINT64.encodedSizeWithTag(2, value.index)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: VotePollRequest): Unit {
        if (value.poll_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.poll_id)
        if (value.index != 0L) ProtoAdapter.UINT64.encodeWithTag(writer, 2, value.index)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: VotePollRequest): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.index != 0L) ProtoAdapter.UINT64.encodeWithTag(writer, 2, value.index)
        if (value.poll_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.poll_id)
      }

      public override fun decode(reader: ProtoReader): VotePollRequest {
        var poll_id: String = ""
        var index: Long = 0L
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> poll_id = ProtoAdapter.STRING.decode(reader)
            2 -> index = ProtoAdapter.UINT64.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return VotePollRequest(
          poll_id = poll_id,
          index = index,
          unknownFields = unknownFields
        )
      }

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

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy