Tagged Questions
2
votes
2answers
1k views
Google Protocol Buffer repeated field C++
I have the below protocol buffer. Note that StockStatic is a repeated field.
message ServiceResponse
{
enum Type
{
REQUEST_FAILED = 1;
STOCK_STATIC_SNAPSHOT = 2;
}
...