alltypes.proto 491 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. message AllTypesTest {
  3. double adouble = 1;
  4. float afloat = 2;
  5. int32 anint32 = 3;
  6. int64 anint64 = 4;
  7. uint32 auint32 = 5;
  8. uint64 auint64 = 6;
  9. bool abool = 7;
  10. bytes abytes = 8;
  11. repeated double double_list = 9;
  12. repeated float float_list = 10;
  13. repeated sint32 int32_list = 11;
  14. repeated sfixed64 int64_list = 12;
  15. repeated fixed32 uint32_list = 13;
  16. repeated fixed64 uint64_list = 14;
  17. repeated bool bool_list = 15;
  18. repeated bytes bytes_list = 16;
  19. }