thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/RealUserEndpointTestDetail.md
2024-09-25 07:39:02 +00:00

3.0 KiB
Raw Blame History

RealUserEndpointTestDetail

Properties

Name Type Description Notes
agent_id str Unique ID of endpoint agent, from `/endpoint/agents` endpoint. [optional] [readonly]
committed datetime UTC date when endpoint real user test was committed to the controller (ISO date-time format). [optional] [readonly]
var_date datetime UTC date when endpoint real user test took place (ISO date-time format). [optional] [readonly]
experience_score float Score rating a users experience when loading a particular page, from 0 (the worst) to 1 (the best). More details. [optional] [readonly]
number_of_pages int Number of web pages visited on target website. [optional] [readonly]
organization_name str Name of the AS organization `sourceAddress` belongs to. [optional] [readonly]
port int Port used to visit target website. [optional] [readonly]
protocol str Protocol used to visit target website. [optional] [readonly]
round_id int Epoch time (seconds) indicating the start time of the round. [optional] [readonly]
source_address str Public IP address of the endpoint agent during the session. [optional] [readonly]
id str Endpoint real user test ID. Each endpoint real user test occurrence has a unique ID. [optional] [readonly]
visited_site str Domain used to visit target website. [optional] [readonly]
browser EndpointBrowser [optional]
coordinates RealUserEndpointTestCoordinates [optional]
pages **List[RealUserEndpointTestPage]** Web site base domain visited during the session. [optional]
network RealUserEndpointTestNetwork [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.real_user_endpoint_test_detail import RealUserEndpointTestDetail

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

# convert the object into a dict
real_user_endpoint_test_detail_dict = real_user_endpoint_test_detail_instance.to_dict()
# create an instance of RealUserEndpointTestDetail from a dict
real_user_endpoint_test_detail_from_dict = RealUserEndpointTestDetail.from_dict(real_user_endpoint_test_detail_dict)

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