%JSON_ObjectIsObject function


Function

Check if there is object in given field in JSON object.

Declaration
BOOL %JSON_ObjectIsObject(
    INT in handle, 
    TEXT in field
 )
Parameters
handleHandle to parent JSON object.
fieldField name
Return value

@TRUE if in given field is object, else @FALSE.

Description

Function check if there is object in given field in JSON object.

Exception is thrown if handle to JSON object is invalid or field does not exists.

Example
 INT _obj
 _obj := %JSON_ObjectFromString(ModuleInfo)
 
 BOOL _is_object
 _is_object := %JSON_ObjectIsObject(_obj, "client_info")

 %JSON_FreeObjectHandle(_obj)
Napíšte komentár