オブジェクトのStringプロパティを、エスケープなどを行わずにネストされたJSONとしてシリアル化する必要があります。
{
"regularProperty" : "Test here",
"nestedJSON" : {
"propertyArray" : [1,2,3],
"propertyText" : "new Text",
"anotherObject" : { ... }
}
}
また、nestedJSONプロパティにはテキストが含まれている必要があります
{
"propertyArray" : [1,2,3],
"propertyText" : "new Text",
"anotherObject" : { ... }
}
シリアル化/逆シリアル化の両方をどのように可能にしますか?特定の注釈またはデータ型はありますか?