1syntax = "proto3";
2
3package issue330;
4
5import "github.com/gogo/protobuf/gogoproto/gogo.proto";
6
7option (gogoproto.benchgen_all)    = true;
8option (gogoproto.equal_all)       = true;
9option (gogoproto.marshaler_all)   = true;
10option (gogoproto.populate_all)    = true;
11option (gogoproto.sizer_all)       = true;
12option (gogoproto.testgen_all)     = true;
13option (gogoproto.unmarshaler_all) = true;
14
15message Object {
16    uint32 type         = 1 [(gogoproto.casttype) = "TypeIdentifier"];
17}
18