Json – Should I use string or Value as type in a message for a serialized object?
Goal I want to save an object serialized as JSON in a gRPC message. Info The Microsoft documentation says to use the type google.protobuf.Value for JSON. The serialized object should then be converted with Value.Parser.ParseJson. And converted again on the…