Link

Syntax

AddJsonNode(json_node)

Description

Use this method to add a JsonNode to the JSON Array.

Parameters

Name Description
json_node Specifies the Json node to add to the JSON Array as a JsonNode data type.

Returns

None.

Example

Local JsonNode &jnJson = CreateJsonNode();
   
/* Populate Json Node ... */
   
Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
   
&oArray.AddJsonNode(&jnJson);