mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
* [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>
31 lines
943 B
Markdown
31 lines
943 B
Markdown
# UserAgents
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**user_agents** | [**List[UserAgent]**](UserAgent.md) | | [optional]
|
|
**links** | [**SelfLinks**](SelfLinks.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.emulation.models.user_agents import UserAgents
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of UserAgents from a JSON string
|
|
user_agents_instance = UserAgents.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(UserAgents.to_json())
|
|
|
|
# convert the object into a dict
|
|
user_agents_dict = user_agents_instance.to_dict()
|
|
# create an instance of UserAgents from a dict
|
|
user_agents_from_dict = UserAgents.from_dict(user_agents_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)
|
|
|
|
|