Packages
An implementation of Google's Protocol Buffers for Erlang, based on ngerakines/erlang_protobuffs.
Current section
Files
Jump to
Current section
Files
test/erlang_protobuffs_SUITE_data/proto/repeater.proto
package repeater;
message Person {
required string name = 1;
required string address = 2;
required string phone_number = 3;
required int32 age = 4;
repeated string hobbies = 5;
repeated Location locations = 6;
repeated uint32 ids = 7;
}
message Location {
required string region = 1;
required string country = 2;
}