mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
985 B
985 B
UserAccountGroups
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| users | **List[UserAccountGroup]** | [optional] |
Example
from thousandeyes_sdk.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)