Hello,
is it possible to generate a message without body descriptor?
message Any{
map<string,string> data = 1;
}
expected output in json supposed to be the simplest possible json:
{
"key":"value",
"key":"value",
}
but always get the descriptor of the object as well which I do not want:
{
"data":{
"key":"value",
"key":"value",
}
}
Can I omit the outer structure somehow?
all the best
--
You received this message because you are subscribed to the Google Groups
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/protobuf/1210be25-e896-4c3e-b8af-fb7f65407484%40googlegroups.com.