| name | String | Sets the name of the component. |
| as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |
| is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
| approval-template-handler | String | A function used to render the entire approval section when state is "awaitingApproval". Receives the widget options object as the first argument and must return an HTML string. When set, the built-in approve and reject buttons are not rendered. This option expects the name of a JavaScript function that will be called to return the template. |
| error-template-handler | String | A function used to render the entire error section when state is "error". Receives the widget options object as the first argument and must return an HTML string. When set, the built-in error message box is not rendered. This option expects the name of a JavaScript function that will be called to return the template. |
| deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
| approval-text | String | A text message displayed inside the approval card when state is "awaitingApproval". |
| error-text | String | An error message displayed when state is "error". |
| expandable | Boolean | Enables toggling the visibility of the step body by clicking the header or using the keyboard. |
| expanded | Boolean | Controls whether the step body is visible when the widget initializes. |
| label | String | The primary text label displayed in the step header. |
| on-action | String | The name of the JavaScript function that will handle the action event. Fired when the user clicks the approve or reject button in the approval UI. Only fires when state is "awaitingApproval".The event handler function context (available via the this keyword) will be set to the widget instance. |
| on-expanded-change | String | The name of the JavaScript function that will handle the expandedChange event. Fired when the user clicks the header to toggle the expanded state. Calling e.preventDefault() prevents the toggle from taking effect.The event handler function context (available via the this keyword) will be set to the widget instance. |
| parameters | Object | A plain JavaScript object rendered as formatted JSON in the step body under the parameters label. |
| parameters-template-handler | String | A function used to render the parameters section body. Receives the widget options object as the first argument and must return an HTML string. This option expects the name of a JavaScript function that will be called to return the template. |
| result | Object | A plain JavaScript object rendered as formatted JSON in the step body under the result label. |
| result-template-handler | String | A function used to render the result section body. Receives the widget options object as the first argument and must return an HTML string. This option expects the name of a JavaScript function that will be called to return the template. |
| script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
| secondary-label | String | A secondary text label displayed after the separator in the step header. |
| state | ToolCallState | The current state of the tool call. |
| status-svg-icon | String | Overrides the default SVG icon used inside the state badge. When null, a built-in icon is chosen based on the current state. |
| svg-icon | String | The name of the SVG icon displayed in the step header. |