oneof.proto 95 B

123456
  1. message MyOneOf {
  2. oneof my_oneof {
  3. uint32 id = 1;
  4. string name = 2;
  5. }
  6. }