21 lines
369 B
Protocol Buffer
21 lines
369 B
Protocol Buffer
syntax = "proto3";
|
|
package mogo.telematics;
|
|
|
|
enum ParamSetType
|
|
{
|
|
ParamSetTypeNone = 0;
|
|
ParamSetTypeBlindArea = 1;
|
|
}
|
|
|
|
message ParamSetCmd
|
|
{
|
|
uint32 src = 1; // 0: none, 1:pad, 2:aicloud
|
|
ParamSetType type = 2;
|
|
oneof Value {
|
|
bool boolValue = 3;
|
|
int64 intValue = 4;
|
|
double floatValue = 5;
|
|
string stringValue = 6;
|
|
}
|
|
}
|