thousandeyes-sdk-python/thousandeyes-sdk-tests/docs/TestAgentRequest.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

994 B

TestAgentRequest

Properties

Name Type Description Notes
agent_id str The agent ID. Get `agentId` from `/agents` endpoint.

Example

from thousandeyes_sdk.tests.models.test_agent_request import TestAgentRequest

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

# convert the object into a dict
test_agent_request_dict = test_agent_request_instance.to_dict()
# create an instance of TestAgentRequest from a dict
test_agent_request_from_dict = TestAgentRequest.from_dict(test_agent_request_dict)

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