mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
* [GitHub Bot] Generated python SDK * Deleted labels (that's deprecated in v7, being replaced by tags) & Updated some additional files --------- Co-authored-by: API Team <api-team@thousandeyes.com> Co-authored-by: Miguel Pragosa <mpragosa@thousandeyes.com>
32 lines
1.0 KiB
Markdown
32 lines
1.0 KiB
Markdown
# UserAgent
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**browser** | **str** | The name of the web browser. | [optional]
|
|
**os** | **str** | The operating system for the user-agent HTTP header. | [optional]
|
|
**value** | **str** | The text of the user-agent header. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.emulation.models.user_agent import UserAgent
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of UserAgent from a JSON string
|
|
user_agent_instance = UserAgent.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(UserAgent.to_json())
|
|
|
|
# convert the object into a dict
|
|
user_agent_dict = user_agent_instance.to_dict()
|
|
# create an instance of UserAgent from a dict
|
|
user_agent_from_dict = UserAgent.from_dict(user_agent_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)
|
|
|
|
|