cri-o/vendor/github.com/gogo/protobuf/test/theproto3/footer.proto
Mrunal Patel 8e5b17cf13 Switch to github.com/golang/dep for vendoring
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2017-01-31 16:45:59 -08:00

21 lines
530 B
Protocol Buffer

message MessageWithMap {
map<int32, string> name_mapping = 1;
map<sint64, FloatingPoint> msg_mapping = 2;
map<bool, bytes> byte_mapping = 3;
}
message FloatingPoint {
double f = 1;
}
message Uint128Pair {
bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"];
bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"];
}
message ContainsNestedMap {
message NestedMap {
map<string, double> NestedMapField = 1;
}
}