Skip to content

Commit 7bbd1d3

Browse files
committed
leftovers
1 parent 6121f87 commit 7bbd1d3

File tree

2 files changed

+16
-0
lines changed
  • protobuf/protobuf-core/src/commonMain/generated-code/kotlin-multiplatform/com/google/protobuf/kotlin
  • tests/protobuf-conformance/src/main/generated-code/kotlin-multiplatform/com/google/protobuf/conformance

2 files changed

+16
-0
lines changed

protobuf/protobuf-core/src/commonMain/generated-code/kotlin-multiplatform/com/google/protobuf/kotlin/Struct.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,14 @@ public interface Struct {
3434
*/
3535
@kotlinx.rpc.grpc.codec.WithCodec(com.google.protobuf.kotlin.ValueInternal.CODEC::class)
3636
public interface Value {
37+
/**
38+
* The kind of value.
39+
*/
3740
public val kind: com.google.protobuf.kotlin.Value.Kind?
3841

42+
/**
43+
* The kind of value.
44+
*/
3945
public sealed interface Kind {
4046
/**
4147
* Represents a null value.

tests/protobuf-conformance/src/main/generated-code/kotlin-multiplatform/com/google/protobuf/conformance/Conformance.kt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,18 @@ interface ConformanceRequest {
7171
* unknown fields instead of ignore. This feature is optional.
7272
*/
7373
val printUnknownFields: Boolean
74+
/**
75+
* The payload (whether protobuf of JSON) is always for a
76+
* protobuf_test_messages.proto3.TestAllTypes proto (as defined in
77+
* src/google/protobuf/proto3_test_messages.proto).
78+
*/
7479
val payload: com.google.protobuf.conformance.ConformanceRequest.Payload?
7580

81+
/**
82+
* The payload (whether protobuf of JSON) is always for a
83+
* protobuf_test_messages.proto3.TestAllTypes proto (as defined in
84+
* src/google/protobuf/proto3_test_messages.proto).
85+
*/
7686
sealed interface Payload {
7787
@JvmInline
7888
value class ProtobufPayload(val value: ByteArray): Payload

0 commit comments

Comments
 (0)