Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

AgentAssignmentDetails

Details of an agent assignment by ID

Properties

Name Type Description Notes
agent_id str The id of the agent that is assigned.
capture_settings CaptureSettings The capture settings of the agent that is assigned. [optional]
id str
interfaces List[str] The names of the assigned test interfaces for the agent. [optional]
links List[APILink] [optional]

Example

from cyperf.models.agent_assignment_details import AgentAssignmentDetails

# TODO update the JSON string below
json = "{}"
# create an instance of AgentAssignmentDetails from a JSON string
agent_assignment_details_instance = AgentAssignmentDetails.from_json(json)
# print the JSON string representation of the object
print(AgentAssignmentDetails.to_json())

# convert the object into a dict
agent_assignment_details_dict = agent_assignment_details_instance.to_dict()
# create an instance of AgentAssignmentDetails from a dict
agent_assignment_details_from_dict = AgentAssignmentDetails.from_dict(agent_assignment_details_dict)

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