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

commonMain.socket.chat.SendChatMessageToChannelResponse.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.chat.SendChatMessageToChannelResponse in socket/chat.proto
package socket.chat

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 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 SendChatMessageToChannelResponse(
  @field:WireField(
    tag = 1,
    adapter = "socket.chat.ChatMessage#ADAPTER",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val message: ChatMessage? = 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 SendChatMessageToChannelResponse) return false
    if (unknownFields != other.unknownFields) return false
    if (message != other.message) return false
    return true
  }

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

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

  public fun copy(message: ChatMessage? = this.message, unknownFields: ByteString =
      this.unknownFields): SendChatMessageToChannelResponse =
      SendChatMessageToChannelResponse(message, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object :
        ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      SendChatMessageToChannelResponse::class, 
      "type.googleapis.com/socket.chat.SendChatMessageToChannelResponse", 
      PROTO_3, 
      null, 
      "socket/chat.proto"
    ) {
      public override fun encodedSize(`value`: SendChatMessageToChannelResponse): Int {
        var size = value.unknownFields.size
        if (value.message != null) size += ChatMessage.ADAPTER.encodedSizeWithTag(1, value.message)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: SendChatMessageToChannelResponse):
          Unit {
        if (value.message != null) ChatMessage.ADAPTER.encodeWithTag(writer, 1, value.message)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter,
          `value`: SendChatMessageToChannelResponse): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.message != null) ChatMessage.ADAPTER.encodeWithTag(writer, 1, value.message)
      }

      public override fun decode(reader: ProtoReader): SendChatMessageToChannelResponse {
        var message: ChatMessage? = null
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> message = ChatMessage.ADAPTER.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return SendChatMessageToChannelResponse(
          message = message,
          unknownFields = unknownFields
        )
      }

      public override fun redact(`value`: SendChatMessageToChannelResponse):
          SendChatMessageToChannelResponse = value.copy(
        message = value.message?.let(ChatMessage.ADAPTER::redact),
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy