1
0
Fork 0
telegraf/plugins/parsers/xpath/testcases/protos/phonenumber.proto

16 lines
183 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package importtest;
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
optional string number = 1;
optional PhoneType type = 2;
}