| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| visible |
bool |
|
[optional] |
| min_lean_version |
str |
|
[optional] |
| max_lean_version |
str |
|
[optional] |
from sorrydb_api_client.models.agent_update import AgentUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of AgentUpdate from a JSON string
agent_update_instance = AgentUpdate.from_json(json)
# print the JSON string representation of the object
print(AgentUpdate.to_json())
# convert the object into a dict
agent_update_dict = agent_update_instance.to_dict()
# create an instance of AgentUpdate from a dict
agent_update_from_dict = AgentUpdate.from_dict(agent_update_dict)
[Back to Model list] [Back to API list] [Back to README]