Hi I am trying to get a JSON from some source and once I get it, I want to replace some property.
Example JSON I got
{
"Ida":"11",
"Name":"MyName",
"Type":"SomeType"
"InnerValue": {
"Id":"23",
"someproperty":"svalue",
"anotherproperty":"avalue",
"code":null,
"access":false
}
}
I want to replace the entire InnerValue property with my different values like
"InnerValue": {
"Id":"28",
"someproperty":"svalue2",
"anotherproperty":"avalue2",
"code":null,
"access":true
}
How can we do that?