SetJsonObject property: JsonNode class
Syntax
SetJsonObject(Object)
Description
Use this method to set the Json object of the node.
Parameters
| Parameter | Description |
|---|---|
|
Object |
Specifies the object as a JsonObject. |
Returns
None.
Example
Local JsonNode &jNode = CreateJsonNode();
Local JsonObject &jObj = CreateJsonObject();
&jNode.SetJsonObject(&jObj);