Skip to content
Snippets Groups Projects
Commit bd0b43af authored by Jozsef Barcza's avatar Jozsef Barcza
Browse files

integer data type

add StorageRecordProtocol.proto
parent 1673ab2e
No related branches found
No related tags found
3 merge requests!130integer data type,!121integer data type,!120integer data type
Pipeline #295288 failed
syntax = "proto3";
message StorageRecord {
int32 storageSchemaVersion = 1;
int32 statusCode = 2;
int64 dataTypeCode = 3;
DataPointValue value = 4;
int64 sourceVersionTime = 5;
}
message DataPointValue {
int64 DataPoint_Long = 1;
double DataPoint_Double = 2;
int64 DataPoint_DateTime = 3;
string DataPoint_String = 4;
bool DataPoint_Boolean = 5;
repeated string DataPoint_SetString = 6;
int32 DataPoint_Integer = 7;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment