parseObject

open fun parseObject(jsonBytes: Array<Byte>): T

Return the object created from parsing the specific JSON bytes.

Return

the resulting object

Parameters

jsonBytes

the source JSON bytes

Throws

on parse error


open fun parseObject(jsonString: String): T

Return the object created from parsing the specific JSON String.

Return

the resulting object

Parameters

jsonString

the source JSON string

Throws

on parse error