Syntax
FromJsonObject(json_object)
Description
Use this method to populate the JSON Object from an existing JsonObject object.
Parameters
Name | Description |
---|---|
json_object | Specifies the Json object as a JsonObject object. |
Returns
None.
Example
Local JsonObject &joJson = CreateJsonObject();
/* Populate JsonObject ... */
Local PSM_JSON:Object &oObject = create PSM_JSON:Object();
&oObject.FromJsonObject(&joJson);