I am trying to set a value for a jtoken I am retreiving from the below json
{
"Customer":
{
"Id": "100",
"Country": "BE",
"CustomerName": "Domo",
"CustomerStatus": "Gold",
"CreationDate": {
"Time":""
}
}
}
I am managing to retrieve the token for time using the following jPath:
Customer.CreationDate.Time
But getting a null value when trying to set the property:
var property = timeJToken as JProperty;
property.Value = value;