xyz.block.ftl.v1.console.GetEventsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftl-runtime Show documentation
Show all versions of ftl-runtime Show documentation
Towards a 𝝺-calculus for large-scale systems
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.console.GetEventsResponse in xyz/block/ftl/v1/console/console.proto
package xyz.block.ftl.v1.console
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`.JvmField
import com.squareup.wire.`internal`.immutableCopyOf
import com.squareup.wire.`internal`.redactElements
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.collections.List
import okio.ByteString
public class GetEventsResponse(
events: List = emptyList(),
/**
* For pagination, this cursor is where we should start our next query
*/
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#INT64",
schemaIndex = 1,
)
public val cursor: Long? = null,
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@field:WireField(
tag = 1,
adapter = "xyz.block.ftl.v1.console.Event#ADAPTER",
label = WireField.Label.REPEATED,
schemaIndex = 0,
)
public val events: List = immutableCopyOf("events", events)
@Deprecated(
message = "Shouldn't be used in Kotlin",
level = DeprecationLevel.HIDDEN,
)
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")
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is GetEventsResponse) return false
if (unknownFields != other.unknownFields) return false
if (events != other.events) return false
if (cursor != other.cursor) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + events.hashCode()
result = result * 37 + (cursor?.hashCode() ?: 0)
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
if (events.isNotEmpty()) result += """events=$events"""
if (cursor != null) result += """cursor=$cursor"""
return result.joinToString(prefix = "GetEventsResponse{", separator = ", ", postfix = "}")
}
public fun copy(
events: List = this.events,
cursor: Long? = this.cursor,
unknownFields: ByteString = this.unknownFields,
): GetEventsResponse = GetEventsResponse(events, cursor, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
GetEventsResponse::class,
"type.googleapis.com/xyz.block.ftl.v1.console.GetEventsResponse",
PROTO_3,
null,
"xyz/block/ftl/v1/console/console.proto"
) {
override fun encodedSize(`value`: GetEventsResponse): Int {
var size = value.unknownFields.size
size += Event.ADAPTER.asRepeated().encodedSizeWithTag(1, value.events)
size += ProtoAdapter.INT64.encodedSizeWithTag(2, value.cursor)
return size
}
override fun encode(writer: ProtoWriter, `value`: GetEventsResponse) {
Event.ADAPTER.asRepeated().encodeWithTag(writer, 1, value.events)
ProtoAdapter.INT64.encodeWithTag(writer, 2, value.cursor)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: GetEventsResponse) {
writer.writeBytes(value.unknownFields)
ProtoAdapter.INT64.encodeWithTag(writer, 2, value.cursor)
Event.ADAPTER.asRepeated().encodeWithTag(writer, 1, value.events)
}
override fun decode(reader: ProtoReader): GetEventsResponse {
val events = mutableListOf()
var cursor: Long? = null
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> events.add(Event.ADAPTER.decode(reader))
2 -> cursor = ProtoAdapter.INT64.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return GetEventsResponse(
events = events,
cursor = cursor,
unknownFields = unknownFields
)
}
override fun redact(`value`: GetEventsResponse): GetEventsResponse = value.copy(
events = value.events.redactElements(Event.ADAPTER),
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy