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

AgentUpdate

Properties

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

Example

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]