aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/protos/unittests.proto
blob: 4b1af85e0181a5519e93981007d5d00176e30472 (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 bytes SomeData = 3;
}