I have become a great fan of the JavaScriptOverlayTypes.
so lets say, I have the followin JSON object:
{
"product": {
"name": "Widget",
"prices":
{ "minQty": 1, "price": 12.49 }
}
}
So I write my class for products and one for prices. Now if somethings wents wrong when analysing the "price JavascriptObject", I want to print it as the following:
{ "minQty": 1, "price": 12.49 }
but I havent found a possibilty yet to confert the "price JavascriptObject" backt to a string.
Is there a possibilty to do this?
Regards, Stefan