thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/EndpointRealUserTestDetail.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

45 lines
2.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# EndpointRealUserTestDetail
## 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](https://docs.thousandeyes.com/product-documentation/end-user-monitoring/viewing-data/endpoint-agent-views-reference#user-experience-score). | [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**](EndpointBrowser.md) | | [optional]
**coordinates** | [**RealUserTestCoordinates**](RealUserTestCoordinates.md) | | [optional]
**pages** | [**List[RealUserTestPage]**](RealUserTestPage.md) | Web site base domain visited during the session. | [optional]
**network** | [**RealUserTestNetwork**](RealUserTestNetwork.md) | | [optional]
## Example
```python
from thousandeyes_sdk.endpoint_test_results.models.endpoint_real_user_test_detail import EndpointRealUserTestDetail
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointRealUserTestDetail from a JSON string
endpoint_real_user_test_detail_instance = EndpointRealUserTestDetail.from_json(json)
# print the JSON string representation of the object
print(EndpointRealUserTestDetail.to_json())
# convert the object into a dict
endpoint_real_user_test_detail_dict = endpoint_real_user_test_detail_instance.to_dict()
# create an instance of EndpointRealUserTestDetail from a dict
endpoint_real_user_test_detail_from_dict = EndpointRealUserTestDetail.from_dict(endpoint_real_user_test_detail_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)