mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
13 lines
206 B
Protocol Buffer
13 lines
206 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message OptionalFields {
|
|
message SubMessage {
|
|
required string a = 1;
|
|
}
|
|
|
|
optional SubMessage a = 1;
|
|
optional string b = 2;
|
|
optional uint32 c = 3;
|
|
required uint32 d = 4;
|
|
}
|