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

commonMain.socket.room.Peer.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.88.1
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.room.Peer in socket/room.proto
package socket.room

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 Peer(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "peerId",
  )
  public val peer_id: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "userId",
  )
  public val user_id: String = "",
  @field:WireField(
    tag = 3,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "displayName",
  )
  public val display_name: String = "",
  @field:WireField(
    tag = 4,
    adapter = "socket.room.StageType#ADAPTER",
    jsonName = "stageType",
  )
  public val stage_type: StageType? = null,
  @field:WireField(
    tag = 5,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    jsonName = "customParticipantId",
  )
  public val custom_participant_id: String? = null,
  @field:WireField(
    tag = 6,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    jsonName = "presetId",
  )
  public val preset_id: String? = null,
  @field:WireField(
    tag = 7,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    jsonName = "displayPictureUrl",
  )
  public val display_picture_url: String? = null,
  @field:WireField(
    tag = 8,
    adapter = "com.squareup.wire.ProtoAdapter#BOOL",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val waitlisted: Boolean = false,
  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 Peer) return false
    if (unknownFields != other.unknownFields) return false
    if (peer_id != other.peer_id) return false
    if (user_id != other.user_id) return false
    if (display_name != other.display_name) return false
    if (stage_type != other.stage_type) return false
    if (custom_participant_id != other.custom_participant_id) return false
    if (preset_id != other.preset_id) return false
    if (display_picture_url != other.display_picture_url) return false
    if (waitlisted != other.waitlisted) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + peer_id.hashCode()
      result = result * 37 + user_id.hashCode()
      result = result * 37 + display_name.hashCode()
      result = result * 37 + (stage_type?.hashCode() ?: 0)
      result = result * 37 + (custom_participant_id?.hashCode() ?: 0)
      result = result * 37 + (preset_id?.hashCode() ?: 0)
      result = result * 37 + (display_picture_url?.hashCode() ?: 0)
      result = result * 37 + waitlisted.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """peer_id=${sanitize(peer_id)}"""
    result += """user_id=${sanitize(user_id)}"""
    result += """display_name=${sanitize(display_name)}"""
    if (stage_type != null) result += """stage_type=$stage_type"""
    if (custom_participant_id != null) result +=
        """custom_participant_id=${sanitize(custom_participant_id)}"""
    if (preset_id != null) result += """preset_id=${sanitize(preset_id)}"""
    if (display_picture_url != null) result +=
        """display_picture_url=${sanitize(display_picture_url)}"""
    result += """waitlisted=$waitlisted"""
    return result.joinToString(prefix = "Peer{", separator = ", ", postfix = "}")
  }

  public fun copy(
    peer_id: String = this.peer_id,
    user_id: String = this.user_id,
    display_name: String = this.display_name,
    stage_type: StageType? = this.stage_type,
    custom_participant_id: String? = this.custom_participant_id,
    preset_id: String? = this.preset_id,
    display_picture_url: String? = this.display_picture_url,
    waitlisted: Boolean = this.waitlisted,
    unknownFields: ByteString = this.unknownFields,
  ): Peer = Peer(peer_id, user_id, display_name, stage_type, custom_participant_id, preset_id,
      display_picture_url, waitlisted, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      Peer::class, 
      "type.googleapis.com/socket.room.Peer", 
      PROTO_3, 
      null, 
      "socket/room.proto"
    ) {
      public override fun encodedSize(`value`: Peer): Int {
        var size = value.unknownFields.size
        if (value.peer_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.peer_id)
        if (value.user_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.user_id)
        if (value.display_name != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3,
            value.display_name)
        size += StageType.ADAPTER.encodedSizeWithTag(4, value.stage_type)
        size += ProtoAdapter.STRING.encodedSizeWithTag(5, value.custom_participant_id)
        size += ProtoAdapter.STRING.encodedSizeWithTag(6, value.preset_id)
        size += ProtoAdapter.STRING.encodedSizeWithTag(7, value.display_picture_url)
        if (value.waitlisted != false) size += ProtoAdapter.BOOL.encodedSizeWithTag(8,
            value.waitlisted)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: Peer): Unit {
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.peer_id)
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.user_id)
        if (value.display_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3,
            value.display_name)
        StageType.ADAPTER.encodeWithTag(writer, 4, value.stage_type)
        ProtoAdapter.STRING.encodeWithTag(writer, 5, value.custom_participant_id)
        ProtoAdapter.STRING.encodeWithTag(writer, 6, value.preset_id)
        ProtoAdapter.STRING.encodeWithTag(writer, 7, value.display_picture_url)
        if (value.waitlisted != false) ProtoAdapter.BOOL.encodeWithTag(writer, 8, value.waitlisted)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: Peer): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.waitlisted != false) ProtoAdapter.BOOL.encodeWithTag(writer, 8, value.waitlisted)
        ProtoAdapter.STRING.encodeWithTag(writer, 7, value.display_picture_url)
        ProtoAdapter.STRING.encodeWithTag(writer, 6, value.preset_id)
        ProtoAdapter.STRING.encodeWithTag(writer, 5, value.custom_participant_id)
        StageType.ADAPTER.encodeWithTag(writer, 4, value.stage_type)
        if (value.display_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3,
            value.display_name)
        if (value.user_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.user_id)
        if (value.peer_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.peer_id)
      }

      public override fun decode(reader: ProtoReader): Peer {
        var peer_id: String = ""
        var user_id: String = ""
        var display_name: String = ""
        var stage_type: StageType? = null
        var custom_participant_id: String? = null
        var preset_id: String? = null
        var display_picture_url: String? = null
        var waitlisted: Boolean = false
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> peer_id = ProtoAdapter.STRING.decode(reader)
            2 -> user_id = ProtoAdapter.STRING.decode(reader)
            3 -> display_name = ProtoAdapter.STRING.decode(reader)
            4 -> try {
              stage_type = StageType.ADAPTER.decode(reader)
            } catch (e: ProtoAdapter.EnumConstantNotFoundException) {
              reader.addUnknownField(tag, FieldEncoding.VARINT, e.value.toLong())
            }
            5 -> custom_participant_id = ProtoAdapter.STRING.decode(reader)
            6 -> preset_id = ProtoAdapter.STRING.decode(reader)
            7 -> display_picture_url = ProtoAdapter.STRING.decode(reader)
            8 -> waitlisted = ProtoAdapter.BOOL.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return Peer(
          peer_id = peer_id,
          user_id = user_id,
          display_name = display_name,
          stage_type = stage_type,
          custom_participant_id = custom_participant_id,
          preset_id = preset_id,
          display_picture_url = display_picture_url,
          waitlisted = waitlisted,
          unknownFields = unknownFields
        )
      }

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

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy