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