| Name | Type | Description | Notes |
|---|---|---|---|
| agent_id | str | [optional] |
from cyperf.models.agent_release import AgentRelease
# TODO update the JSON string below
json = "{}"
# create an instance of AgentRelease from a JSON string
agent_release_instance = AgentRelease.from_json(json)
# print the JSON string representation of the object
print(AgentRelease.to_json())
# convert the object into a dict
agent_release_dict = agent_release_instance.to_dict()
# create an instance of AgentRelease from a dict
agent_release_from_dict = AgentRelease.from_dict(agent_release_dict)