17 lines
372 B
Protocol Buffer
17 lines
372 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseRequest.proto";
|
|
|
|
message RealTimeKVReportReq {
|
|
required BaseRequest _BaseRequest = 1;
|
|
optional string _DeviceModel = 2;
|
|
optional string _DeviceBrand = 3;
|
|
optional string _OsName = 4;
|
|
optional string _OsVersion = 5;
|
|
optional string _LanguageVer = 6;
|
|
required uint32 _LogID = 7;
|
|
optional string _Value = 8;
|
|
}
|