thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/TestAgent.md
api-team-automation[bot] d4b7ca82b7
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#193)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-09-08 13:15:25 +01:00

929 B

TestAgent

Properties

Name Type Description Notes
agent_id str Identifier for the agent (get `agentId` from `/agents` endpoint). [optional]

Example

from thousandeyes_sdk.instant_tests.models.test_agent import TestAgent

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

# convert the object into a dict
test_agent_dict = test_agent_instance.to_dict()
# create an instance of TestAgent from a dict
test_agent_from_dict = TestAgent.from_dict(test_agent_dict)

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