resultObject(default: null)
A plain JavaScript object rendered as formatted JSON in the step body under the result label.
Example - show a tool result
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "fetch_user",
state: "completed",
expandable: true,
expanded: true,
result: { id: 1, name: "Jane Doe" }
});
</script>