aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/protos/unittests.proto
blob: 68b662b9b3e724faf89987e1431b0dccbbf4e358 (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;
}