commonMain.socket.room.CreateRoomResponsePayload.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
The newest version!
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.room.CreateRoomResponsePayload 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 CreateRoomResponsePayload(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
)
public val id: String? = null,
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
)
public val title: String? = null,
@field:WireField(
tag = 3,
adapter = "socket.room.ServiceError#ADAPTER",
)
public val error: ServiceError? = 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 CreateRoomResponsePayload) return false
if (unknownFields != other.unknownFields) return false
if (id != other.id) return false
if (title != other.title) return false
if (error != other.error) return false
return true
}
public override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + (id?.hashCode() ?: 0)
result = result * 37 + (title?.hashCode() ?: 0)
result = result * 37 + (error?.hashCode() ?: 0)
super.hashCode = result
}
return result
}
public override fun toString(): String {
val result = mutableListOf()
if (id != null) result += """id=${sanitize(id)}"""
if (title != null) result += """title=${sanitize(title)}"""
if (error != null) result += """error=$error"""
return result.joinToString(prefix = "CreateRoomResponsePayload{", separator = ", ", postfix =
"}")
}
public fun copy(
id: String? = this.id,
title: String? = this.title,
error: ServiceError? = this.error,
unknownFields: ByteString = this.unknownFields,
): CreateRoomResponsePayload = CreateRoomResponsePayload(id, title, error, unknownFields)
public companion object {
public val ADAPTER: ProtoAdapter = object :
ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
CreateRoomResponsePayload::class,
"type.googleapis.com/socket.room.CreateRoomResponsePayload",
PROTO_3,
null,
"socket/room.proto"
) {
public override fun encodedSize(`value`: CreateRoomResponsePayload): Int {
var size = value.unknownFields.size
size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.id)
size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.title)
size += ServiceError.ADAPTER.encodedSizeWithTag(3, value.error)
return size
}
public override fun encode(writer: ProtoWriter, `value`: CreateRoomResponsePayload): Unit {
ProtoAdapter.STRING.encodeWithTag(writer, 1, value.id)
ProtoAdapter.STRING.encodeWithTag(writer, 2, value.title)
ServiceError.ADAPTER.encodeWithTag(writer, 3, value.error)
writer.writeBytes(value.unknownFields)
}
public override fun encode(writer: ReverseProtoWriter, `value`: CreateRoomResponsePayload):
Unit {
writer.writeBytes(value.unknownFields)
ServiceError.ADAPTER.encodeWithTag(writer, 3, value.error)
ProtoAdapter.STRING.encodeWithTag(writer, 2, value.title)
ProtoAdapter.STRING.encodeWithTag(writer, 1, value.id)
}
public override fun decode(reader: ProtoReader): CreateRoomResponsePayload {
var id: String? = null
var title: String? = null
var error: ServiceError? = null
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> id = ProtoAdapter.STRING.decode(reader)
2 -> title = ProtoAdapter.STRING.decode(reader)
3 -> error = ServiceError.ADAPTER.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return CreateRoomResponsePayload(
id = id,
title = title,
error = error,
unknownFields = unknownFields
)
}
public override fun redact(`value`: CreateRoomResponsePayload): CreateRoomResponsePayload =
value.copy(
error = value.error?.let(ServiceError.ADAPTER::redact),
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy