Link

Syntax

AddBoolean(bool)

Description

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

Parameters

Name Description
bool Specifies the boolean to add to the JSON Array as a Boolean data type.

Returns

None.

Example

Local boolean &bIsBool = True;
   
Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
   
&oArray.AddBoolean(&bIsBool);