Details of an agent assignment by port
| Name | Type | Description | Notes |
|---|---|---|---|
| capture_settings | CaptureSettings | The capture settings of the port that is assigned. | [optional] |
| id | str | ||
| links | List[APILink] | [optional] | |
| port_id | str | The id of the port that is assigned. | [optional] |
from cyperf.models.agent_assignment_by_port import AgentAssignmentByPort
# TODO update the JSON string below
json = "{}"
# create an instance of AgentAssignmentByPort from a JSON string
agent_assignment_by_port_instance = AgentAssignmentByPort.from_json(json)
# print the JSON string representation of the object
print(AgentAssignmentByPort.to_json())
# convert the object into a dict
agent_assignment_by_port_dict = agent_assignment_by_port_instance.to_dict()
# create an instance of AgentAssignmentByPort from a dict
agent_assignment_by_port_from_dict = AgentAssignmentByPort.from_dict(agent_assignment_by_port_dict)