JSON_ObjectToString
%JSON_ObjectToString function
Function
Gets a text representation of the JSON object.
Declaration
TEXT %JSON_ObjectToString(
INT in handle,
BOOL in pretty
)Parameters
handle | Handle to JSON object. |
pretty | Multi-line formatting of output |
Return value
None
Description
Function gets a text representation of the JSON object.
Exception is thrown if handle to the JSON object is invalid.
Example
INT _obj
_obj := %JSON_CreateObject()
%JSON_ObjectSetValue(_obj, "Name", "John Smith")
TEXT _txt
_txt := %JSON_ObjectToString(_obj)
%JSON_FreeObjectHandle(_obj)