20 lines
263 B
Protocol Buffer
20 lines
263 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package oneof;
|
||
|
option java_package = "aristaproto.oneof";
|
||
|
|
||
|
message Test {
|
||
|
oneof foo {
|
||
|
int32 pitied = 1;
|
||
|
string pitier = 2;
|
||
|
}
|
||
|
|
||
|
int32 just_a_regular_field = 3;
|
||
|
|
||
|
oneof bar {
|
||
|
int32 drinks = 11;
|
||
|
string bar_name = 12;
|
||
|
}
|
||
|
}
|
||
|
|