mirror of
https://github.com/google/pebble.git
synced 2025-03-19 10:31:21 +00:00
19 lines
445 B
Protocol Buffer
19 lines
445 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
message SubMessage {
|
||
|
optional string stringvalue = 1;
|
||
|
repeated int32 int32value = 2;
|
||
|
repeated fixed32 fixed32value = 3;
|
||
|
repeated fixed64 fixed64value = 4;
|
||
|
}
|
||
|
|
||
|
message TestMessage {
|
||
|
optional string stringvalue = 1;
|
||
|
repeated int32 int32value = 2;
|
||
|
repeated fixed32 fixed32value = 3;
|
||
|
repeated fixed64 fixed64value = 4;
|
||
|
optional SubMessage submsg = 5;
|
||
|
repeated string repeatedstring = 6;
|
||
|
}
|
||
|
|