thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/TestAgentResponseProperties.md
api-team-automation[bot] f9d21e46b5
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#188)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-27 14:20:49 +01:00

1.2 KiB

TestAgentResponseProperties

Properties

Name Type Description Notes
source_ip_address str IP address of the agent interface used as the source for the test. Returned when a source interface is selected. [optional] [readonly]

Example

from thousandeyes_sdk.instant_tests.models.test_agent_response_properties import TestAgentResponseProperties

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

# convert the object into a dict
test_agent_response_properties_dict = test_agent_response_properties_instance.to_dict()
# create an instance of TestAgentResponseProperties from a dict
test_agent_response_properties_from_dict = TestAgentResponseProperties.from_dict(test_agent_response_properties_dict)

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