mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 01:25:29 +00:00
931 B
931 B
AgentTransfers
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| transfers | **List[AgentTransfer]** | [optional] |
Example
from endpoint_agents.models.agent_transfers import AgentTransfers
# TODO update the JSON string below
json = "{}"
# create an instance of AgentTransfers from a JSON string
agent_transfers_instance = AgentTransfers.from_json(json)
# print the JSON string representation of the object
print(AgentTransfers.to_json())
# convert the object into a dict
agent_transfers_dict = agent_transfers_instance.to_dict()
# create an instance of AgentTransfers from a dict
agent_transfers_from_dict = AgentTransfers.from_dict(agent_transfers_dict)