mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 16:13:55 +00:00
1.2 KiB
1.2 KiB
ConsoleLogsTestResults
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| results | **List[ConsoleLogsResult]** | [optional] | |
| test | SimpleTest | [optional] | |
| links | PaginationLinks | [optional] |
Example
from thousandeyes_sdk.test_results.models.console_logs_test_results import ConsoleLogsTestResults
# TODO update the JSON string below
json = "{}"
# create an instance of ConsoleLogsTestResults from a JSON string
console_logs_test_results_instance = ConsoleLogsTestResults.from_json(json)
# print the JSON string representation of the object
print(ConsoleLogsTestResults.to_json())
# convert the object into a dict
console_logs_test_results_dict = console_logs_test_results_instance.to_dict()
# create an instance of ConsoleLogsTestResults from a dict
console_logs_test_results_from_dict = ConsoleLogsTestResults.from_dict(console_logs_test_results_dict)