%JSON_ObjectToString function


Function

Get text representation of JSON object.

Declaration
TEXT %JSON_ObjectToString(
    INT in handle, 
    BOOL in pretty
 )
Parameters
handleHandle to JSON object.
prettyMulti-line formatting of output
Return value

None

Description

Function get text representation of JSON object.

Exception is thrown if handle to 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)
Napíšte komentár