blob: a856b0942ad574f31c2872668981d1cfd5caecdd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
option cc_enable_arenas = true;
message TSimple {
required string Str1 = 1;
optional string Str2 = 2;
optional uint64 Number1 = 3;
}
message TBigMessage {
repeated TSimple Simples = 1;
repeated string ManyStr = 2;
optional string OneMoreStr = 3;
optional uint64 YANumber = 4;
}
message TMessageWithPayload {
optional string Meta = 1;
repeated uint32 PayloadId = 2;
repeated string SomeData = 3;
}
|