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