| Name |
Type |
Description |
Notes |
| agent_id |
str |
The ID of the agent |
[optional] |
from cyperf.models.agent_to_be_rebooted import AgentToBeRebooted
# TODO update the JSON string below
json = "{}"
# create an instance of AgentToBeRebooted from a JSON string
agent_to_be_rebooted_instance = AgentToBeRebooted.from_json(json)
# print the JSON string representation of the object
print(AgentToBeRebooted.to_json())
# convert the object into a dict
agent_to_be_rebooted_dict = agent_to_be_rebooted_instance.to_dict()
# create an instance of AgentToBeRebooted from a dict
agent_to_be_rebooted_from_dict = AgentToBeRebooted.from_dict(agent_to_be_rebooted_dict)
[Back to Model list] [Back to API list] [Back to README]