xyz.block.ftl.v1.console.Verb.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.Verb in xyz/block/ftl/v1/console/console.proto
@file:Suppress("DEPRECATION")
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`.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.Suppress
import okio.ByteString
public class Verb(
@field:WireField(
tag = 1,
adapter = "xyz.block.ftl.v1.schema.Verb#ADAPTER",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 0,
)
public val verb: xyz.block.ftl.v1.schema.Verb? = null,
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 1,
)
public val schema: String = "",
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "jsonRequestSchema",
schemaIndex = 2,
)
public val json_request_schema: String = "",
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@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 Verb) return false
if (unknownFields != other.unknownFields) return false
if (verb != other.verb) return false
if (schema != other.schema) return false
if (json_request_schema != other.json_request_schema) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + (verb?.hashCode() ?: 0)
result = result * 37 + schema.hashCode()
result = result * 37 + json_request_schema.hashCode()
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
if (verb != null) result += """verb=$verb"""
result += """schema=${sanitize(schema)}"""
result += """json_request_schema=${sanitize(json_request_schema)}"""
return result.joinToString(prefix = "Verb{", separator = ", ", postfix = "}")
}
public fun copy(
verb: xyz.block.ftl.v1.schema.Verb? = this.verb,
schema: String = this.schema,
json_request_schema: String = this.json_request_schema,
unknownFields: ByteString = this.unknownFields,
): Verb = Verb(verb, schema, json_request_schema, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
Verb::class,
"type.googleapis.com/xyz.block.ftl.v1.console.Verb",
PROTO_3,
null,
"xyz/block/ftl/v1/console/console.proto"
) {
override fun encodedSize(`value`: Verb): Int {
var size = value.unknownFields.size
if (value.verb != null) size += xyz.block.ftl.v1.schema.Verb.ADAPTER.encodedSizeWithTag(1,
value.verb)
if (value.schema != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.schema)
if (value.json_request_schema != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3,
value.json_request_schema)
return size
}
override fun encode(writer: ProtoWriter, `value`: Verb) {
if (value.verb != null) xyz.block.ftl.v1.schema.Verb.ADAPTER.encodeWithTag(writer, 1,
value.verb)
if (value.schema != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.schema)
if (value.json_request_schema != "") ProtoAdapter.STRING.encodeWithTag(writer, 3,
value.json_request_schema)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: Verb) {
writer.writeBytes(value.unknownFields)
if (value.json_request_schema != "") ProtoAdapter.STRING.encodeWithTag(writer, 3,
value.json_request_schema)
if (value.schema != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.schema)
if (value.verb != null) xyz.block.ftl.v1.schema.Verb.ADAPTER.encodeWithTag(writer, 1,
value.verb)
}
override fun decode(reader: ProtoReader): Verb {
var verb: xyz.block.ftl.v1.schema.Verb? = null
var schema: String = ""
var json_request_schema: String = ""
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> verb = xyz.block.ftl.v1.schema.Verb.ADAPTER.decode(reader)
2 -> schema = ProtoAdapter.STRING.decode(reader)
3 -> json_request_schema = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return Verb(
verb = verb,
schema = schema,
json_request_schema = json_request_schema,
unknownFields = unknownFields
)
}
override fun redact(`value`: Verb): Verb = value.copy(
verb = value.verb?.let(xyz.block.ftl.v1.schema.Verb.ADAPTER::redact),
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy