UpdateCustomAgentTool200Response
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
agent_custom_tool_id |
str |
The ID of the updated custom agent tool |
[optional] |
Example
from h2ogpte.rest_async.models.update_custom_agent_tool200_response import UpdateCustomAgentTool200Response
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCustomAgentTool200Response from a JSON string
update_custom_agent_tool200_response_instance = UpdateCustomAgentTool200Response.from_json(json)
# print the JSON string representation of the object
print(UpdateCustomAgentTool200Response.to_json())
# convert the object into a dict
update_custom_agent_tool200_response_dict = update_custom_agent_tool200_response_instance.to_dict()
# create an instance of UpdateCustomAgentTool200Response from a dict
update_custom_agent_tool200_response_from_dict = UpdateCustomAgentTool200Response.from_dict(update_custom_agent_tool200_response_dict)