Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 859 Bytes

File metadata and controls

29 lines (20 loc) · 859 Bytes

AgentRelease

Properties

Name Type Description Notes
agent_id str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]