thousandeyes-sdk-python/admin_api/docs/EnterpriseAgents.md
2023-12-07 10:28:08 +00:00

951 B

EnterpriseAgents

Properties

Name Type Description Notes
agents **List[EnterpriseAgent]** [optional]

Example

from admin_api.models.enterprise_agents import EnterpriseAgents

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

# convert the object into a dict
enterprise_agents_dict = enterprise_agents_instance.to_dict()
# create an instance of EnterpriseAgents from a dict
enterprise_agents_form_dict = enterprise_agents.from_dict(enterprise_agents_dict)

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