commonMain.socket.chat.ChannelMember.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-entities Show documentation
Show all versions of proto-entities Show documentation
KMP package which exports compiled protobuf entities to be used by other repos
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.chat.ChannelMember in socket/chat_channel.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 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 ChannelMember(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
)
public val id: String = "",
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
)
public val name: String? = null,
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
)
public val picture: String? = null,
@field:WireField(
tag = 4,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "customParticipantId",
)
public val custom_participant_id: String = "",
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 ChannelMember) return false
if (unknownFields != other.unknownFields) return false
if (id != other.id) return false
if (name != other.name) return false
if (picture != other.picture) return false
if (custom_participant_id != other.custom_participant_id) return false
return true
}
public override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + id.hashCode()
result = result * 37 + (name?.hashCode() ?: 0)
result = result * 37 + (picture?.hashCode() ?: 0)
result = result * 37 + custom_participant_id.hashCode()
super.hashCode = result
}
return result
}
public override fun toString(): String {
val result = mutableListOf()
result += """id=${sanitize(id)}"""
if (name != null) result += """name=${sanitize(name)}"""
if (picture != null) result += """picture=${sanitize(picture)}"""
result += """custom_participant_id=${sanitize(custom_participant_id)}"""
return result.joinToString(prefix = "ChannelMember{", separator = ", ", postfix = "}")
}
public fun copy(
id: String = this.id,
name: String? = this.name,
picture: String? = this.picture,
custom_participant_id: String = this.custom_participant_id,
unknownFields: ByteString = this.unknownFields,
): ChannelMember = ChannelMember(id, name, picture, custom_participant_id, unknownFields)
public companion object {
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
ChannelMember::class,
"type.googleapis.com/socket.chat.ChannelMember",
PROTO_3,
null,
"socket/chat_channel.proto"
) {
public override fun encodedSize(`value`: ChannelMember): Int {
var size = value.unknownFields.size
if (value.id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.id)
size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.name)
size += ProtoAdapter.STRING.encodedSizeWithTag(3, value.picture)
if (value.custom_participant_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(4,
value.custom_participant_id)
return size
}
public override fun encode(writer: ProtoWriter, `value`: ChannelMember): Unit {
if (value.id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.id)
ProtoAdapter.STRING.encodeWithTag(writer, 2, value.name)
ProtoAdapter.STRING.encodeWithTag(writer, 3, value.picture)
if (value.custom_participant_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 4,
value.custom_participant_id)
writer.writeBytes(value.unknownFields)
}
public override fun encode(writer: ReverseProtoWriter, `value`: ChannelMember): Unit {
writer.writeBytes(value.unknownFields)
if (value.custom_participant_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 4,
value.custom_participant_id)
ProtoAdapter.STRING.encodeWithTag(writer, 3, value.picture)
ProtoAdapter.STRING.encodeWithTag(writer, 2, value.name)
if (value.id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.id)
}
public override fun decode(reader: ProtoReader): ChannelMember {
var id: String = ""
var name: String? = null
var picture: String? = null
var custom_participant_id: String = ""
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> id = ProtoAdapter.STRING.decode(reader)
2 -> name = ProtoAdapter.STRING.decode(reader)
3 -> picture = ProtoAdapter.STRING.decode(reader)
4 -> custom_participant_id = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return ChannelMember(
id = id,
name = name,
picture = picture,
custom_participant_id = custom_participant_id,
unknownFields = unknownFields
)
}
public override fun redact(`value`: ChannelMember): ChannelMember = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}