WAWebProtobufsReporting.proto 470 B

1234567891011121314151617181920212223
  1. syntax = "proto3";
  2. package WAWebProtobufsReporting;
  3. option go_package = "go.mau.fi/whatsmeow/proto/waReporting";
  4. message Reportable {
  5. uint32 minVersion = 1;
  6. uint32 maxVersion = 2;
  7. uint32 notReportableMinVersion = 3;
  8. bool never = 4;
  9. }
  10. message Config {
  11. map<uint32, Field> field = 1;
  12. uint32 version = 2;
  13. }
  14. message Field {
  15. uint32 minVersion = 1;
  16. uint32 maxVersion = 2;
  17. uint32 notReportableMinVersion = 3;
  18. bool isMessage = 4;
  19. map<uint32, Field> subfield = 5;
  20. }