Skip to main content

WebRequestResult.JsonTable

"Read-Only"

This property is Read-Only

NameType
JsonTableobject

Description

Response content passed as a Json table. Throws an error if the content could not parse to Json.

Example

-- response content: {"name"="foo", "age"=12}
local response;
Debug:Log(response.name);
Debug:Log(response.age);