mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.0 KiB
1.0 KiB
PageLoadTestResults
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| results | **List[PageLoadTestResult]** | [optional] | |
| test | SimpleTest | [optional] |
Example
from test_results.models.page_load_test_results import PageLoadTestResults
# TODO update the JSON string below
json = "{}"
# create an instance of PageLoadTestResults from a JSON string
page_load_test_results_instance = PageLoadTestResults.from_json(json)
# print the JSON string representation of the object
print(PageLoadTestResults.to_json())
# convert the object into a dict
page_load_test_results_dict = page_load_test_results_instance.to_dict()
# create an instance of PageLoadTestResults from a dict
page_load_test_results_from_dict = PageLoadTestResults.from_dict(page_load_test_results_dict)