Hi,
How do I concatenate multiple JsonRepresentation Object into one, without building my own string parser?
Say I have 2 JsonRepresentation objs
obj1 {"name":"obj1"}
obj2 {"name":"obj2"}
I'd like to get the concatenation:
{
{"name":"obj1"},
{"name":"obj2"}
}
Reading the JsonRepresentation, there is no easy way to do this except by doing some string manipulation?
Thanks