GetJsonObject method: JsonObject class
Syntax
GetJsonObject(Name)
Description
Use this method to return the Json object mentioned by the input parameter from the Json object.
Parameters
| Parameter | Description |
|---|---|
|
Name |
Specifies the name of the Json object as a string. |
Returns
JsonObject.
Example
Local JsonObject &jObj = CreateJsonObject();
Local JsonObject &jObj2 = CreateJsonObject();
&jObj.AddJsonObject("Address", &jObj2);
Local JsonObject &jo = &jObj.GetJsonObject("Address");