commonMain.bridge.BridgeEvent.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: bridge.BridgeEvent in bridge/bridge.proto
package bridge
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 BridgeEvent(
/**
* The event that is being triggered
*/
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
)
public val event: String = "",
/**
* JSON encoded Param Object
*/
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
)
public val params: 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 BridgeEvent) return false
if (unknownFields != other.unknownFields) return false
if (event != other.event) return false
if (params != other.params) return false
return true
}
public override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + event.hashCode()
result = result * 37 + params.hashCode()
super.hashCode = result
}
return result
}
public override fun toString(): String {
val result = mutableListOf()
result += """event=${sanitize(event)}"""
result += """params=${sanitize(params)}"""
return result.joinToString(prefix = "BridgeEvent{", separator = ", ", postfix = "}")
}
public fun copy(
event: String = this.event,
params: String = this.params,
unknownFields: ByteString = this.unknownFields,
): BridgeEvent = BridgeEvent(event, params, unknownFields)
public companion object {
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
BridgeEvent::class,
"type.googleapis.com/bridge.BridgeEvent",
PROTO_3,
null,
"bridge/bridge.proto"
) {
public override fun encodedSize(`value`: BridgeEvent): Int {
var size = value.unknownFields.size
if (value.event != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.event)
if (value.params != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.params)
return size
}
public override fun encode(writer: ProtoWriter, `value`: BridgeEvent): Unit {
if (value.event != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.event)
if (value.params != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.params)
writer.writeBytes(value.unknownFields)
}
public override fun encode(writer: ReverseProtoWriter, `value`: BridgeEvent): Unit {
writer.writeBytes(value.unknownFields)
if (value.params != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.params)
if (value.event != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.event)
}
public override fun decode(reader: ProtoReader): BridgeEvent {
var event: String = ""
var params: String = ""
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> event = ProtoAdapter.STRING.decode(reader)
2 -> params = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return BridgeEvent(
event = event,
params = params,
unknownFields = unknownFields
)
}
public override fun redact(`value`: BridgeEvent): BridgeEvent = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}