sample_for_simple_reflection.proto 495 B

12345678910111213141516171819202122232425
  1. message TInnerSample {
  2. repeated int32 RepInt = 1;
  3. extensions 100 to 199;
  4. }
  5. message TSample {
  6. optional string OneStr = 1;
  7. optional TInnerSample OneMsg = 2;
  8. repeated TInnerSample RepMsg = 3;
  9. repeated string RepStr = 4;
  10. optional string AnotherOneStr = 5;
  11. optional int32 OneInt = 6;
  12. repeated int32 RepInt = 7;
  13. enum EEnum {
  14. V1 = 1;
  15. V2 = 2;
  16. }
  17. optional EEnum OneEnum = 8;
  18. repeated EEnum RepEnum = 9;
  19. extensions 100 to 199;
  20. }