aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/proto3_ut.proto
blob: b24c13085bdd5c5049891964214c1e7d5e677524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

import "yt/yt_proto/yt/formats/extension.proto";

package NYT.NTestingProto3;

option (NYT.file_default_field_flags) = SERIALIZATION_YT;

message TWithOptional
{
    optional int64 x = 1;
}

message TWithOptionalMessage
{
    optional TWithOptional x = 1;
}