thousandeyes-sdk-python/admin/docs/UserAccountGroups.md

968 B

UserAccountGroups

Properties

Name Type Description Notes
users **List[UserAccountGroup]** [optional]

Example

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] [Back to API list] [Back to README]