thousandeyes-sdk-python/endpoint_agents/docs/AgentTransfers.md
2024-05-02 16:26:53 +01:00

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)

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