thousandeyes-sdk-python/agents_api/docs/Agents.md
2023-12-11 09:29:15 +00:00

795 B

Agents

Properties

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

Example

from agents_api.models.agents import Agents

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

# convert the object into a dict
agents_dict = agents_instance.to_dict()
# create an instance of Agents from a dict
agents_form_dict = agents.from_dict(agents_dict)

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