| 1234567891011121314151617181920212223 |
- syntax = "proto3";
- package WAWebProtobufsReporting;
- option go_package = "git.bobomao.top/joey/whatsmeow/proto/waReporting";
- message Reportable {
- uint32 minVersion = 1;
- uint32 maxVersion = 2;
- uint32 notReportableMinVersion = 3;
- bool never = 4;
- }
- message Config {
- map<uint32, Field> field = 1;
- uint32 version = 2;
- }
- message Field {
- uint32 minVersion = 1;
- uint32 maxVersion = 2;
- uint32 notReportableMinVersion = 3;
- bool isMessage = 4;
- map<uint32, Field> subfield = 5;
- }
|