Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

AgentCreate

Properties

Name Type Description Notes
name str
description str [optional]
visible bool [optional] [default to True]
min_lean_version str [optional]
max_lean_version str [optional]

Example

from sorrydb_api_client.models.agent_create import AgentCreate

# TODO update the JSON string below
json = "{}"
# create an instance of AgentCreate from a JSON string
agent_create_instance = AgentCreate.from_json(json)
# print the JSON string representation of the object
print(AgentCreate.to_json())

# convert the object into a dict
agent_create_dict = agent_create_instance.to_dict()
# create an instance of AgentCreate from a dict
agent_create_from_dict = AgentCreate.from_dict(agent_create_dict)

[Back to Model list] [Back to API list] [Back to README]