mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.5 KiB
1.5 KiB
EndpointBrowserExtension
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| browser | BrowserType | [optional] | |
| profile | str | Name of the browser profile where this extension is stored. | [optional] |
| version | str | Endpoint agent browser extension version. | [optional] |
| enabled | bool | Indicates if the extension is disabled or enabled in the web browser. | [optional] |
| active | bool | Flag indicating if there is communication between the extension and ThousandEyes portal. | [optional] |
| error | str | Contains any errors encountered while getting extension status. | [optional] |
Example
from thousandeyes_sdk.endpoint_agents.models.endpoint_browser_extension import EndpointBrowserExtension
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointBrowserExtension from a JSON string
endpoint_browser_extension_instance = EndpointBrowserExtension.from_json(json)
# print the JSON string representation of the object
print(EndpointBrowserExtension.to_json())
# convert the object into a dict
endpoint_browser_extension_dict = endpoint_browser_extension_instance.to_dict()
# create an instance of EndpointBrowserExtension from a dict
endpoint_browser_extension_from_dict = EndpointBrowserExtension.from_dict(endpoint_browser_extension_dict)