thousandeyes-sdk-python/test_results/docs/PageLoadTestResults.md

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)

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