multi_level_nesting_test.proto 328 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. message Function {
  3. string name = 1;
  4. repeated Function.Parameter parameters = 2;
  5. string return_type = 3;
  6. message Parameter {
  7. string name = 1;
  8. Function.Parameter.Value value = 2;
  9. message Value {
  10. oneof type {
  11. string string = 1;
  12. int64 integer = 2;
  13. }
  14. }
  15. }
  16. }