I'm working on a document AI implementation where we are sending multiple related requests gathering the responses and re-combining them. This is all done in C#. As part of this I need to convert a ProcessResponse to a json string and then downstream convert it back to a ProcessResponse object. What is the best way to do this?
I was looking at using JsonFormatter to create the json string but I can't find a way to convert it back to a ProcessResponse. From what I'm reading this seems like a common problem encountered with all Proto Buffer related objects.