You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+1 same issue still in the go forward fork: https://github.com/kaporzhu/protobuf-to-dict. We should fix this, because it makes the dictionary output not fully representative of a protobuf.
enum SomeType {
ZERO_VALUE = 0;
ONE_VALUE = 1;
}
message Test {
SomeType type = 1;
bool is_test = 2;
}
If we try to covert Test object with values SomeType.ZERO_VALUE and is_test is false from protobuf, then our dict will be empty
The text was updated successfully, but these errors were encountered: