mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
2.0 KiB
2.0 KiB
PageLoadTestResult
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | datetime | Data point date UTC (ISO date-time format). | [optional] [readonly] |
| round_id | int | Epoch time (seconds) indicating the start time of the round | [optional] [readonly] |
| links | TestResultAppLinks | [optional] | |
| start_time | int | Epoch time (seconds) indicating the start time of the round | [optional] [readonly] |
| end_time | int | Epoch time (seconds) indicating the end time of the round | [optional] [readonly] |
| agent | TestResultAgent | [optional] | |
| response_time | float | Time to first byte in milliseconds | [optional] [readonly] |
| total_size | int | Sum of wire size of all objects on page in bytes | [optional] [readonly] |
| num_objects | int | Number of objects found on the page | [optional] [readonly] |
| num_errors | int | Number of objects which encountered errors during download | [optional] [readonly] |
| dom_load_time | int | Time to interaction in milliseconds | [optional] [readonly] |
| page_load_time | int | Time to completely load page in milliseconds | [optional] [readonly] |
Example
from thousandeyes_sdk.test_results.models.page_load_test_result import PageLoadTestResult
# TODO update the JSON string below
json = "{}"
# create an instance of PageLoadTestResult from a JSON string
page_load_test_result_instance = PageLoadTestResult.from_json(json)
# print the JSON string representation of the object
print(PageLoadTestResult.to_json())
# convert the object into a dict
page_load_test_result_dict = page_load_test_result_instance.to_dict()
# create an instance of PageLoadTestResult from a dict
page_load_test_result_from_dict = PageLoadTestResult.from_dict(page_load_test_result_dict)