Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 955 Bytes

File metadata and controls

29 lines (20 loc) · 955 Bytes

AgentToBeRebooted

Properties

Name Type Description Notes
agent_id str The ID of the agent [optional]

Example

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]