# UpdateCustomAgentToolRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **tool_args** | **object** | The new arguments for the custom agent tool | ## Example ```python from h2ogpte.rest_async.models.update_custom_agent_tool_request import UpdateCustomAgentToolRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateCustomAgentToolRequest from a JSON string update_custom_agent_tool_request_instance = UpdateCustomAgentToolRequest.from_json(json) # print the JSON string representation of the object print(UpdateCustomAgentToolRequest.to_json()) # convert the object into a dict update_custom_agent_tool_request_dict = update_custom_agent_tool_request_instance.to_dict() # create an instance of UpdateCustomAgentToolRequest from a dict update_custom_agent_tool_request_from_dict = UpdateCustomAgentToolRequest.from_dict(update_custom_agent_tool_request_dict) ```