mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
30 lines
968 B
Markdown
30 lines
968 B
Markdown
# UserAccountGroups
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**users** | [**List[UserAccountGroup]**](UserAccountGroup.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from admin.models.user_account_groups import UserAccountGroups
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of UserAccountGroups from a JSON string
|
|
user_account_groups_instance = UserAccountGroups.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(UserAccountGroups.to_json())
|
|
|
|
# convert the object into a dict
|
|
user_account_groups_dict = user_account_groups_instance.to_dict()
|
|
# create an instance of UserAccountGroups from a dict
|
|
user_account_groups_from_dict = UserAccountGroups.from_dict(user_account_groups_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)
|
|
|
|
|