aboutsummaryrefslogtreecommitdiff
path: root/tests/callbacks/callbacks.proto
blob: 96ac744d53d8cc0c590f90c252e9c619dcb2917d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}