mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.3 KiB
1.3 KiB
UserAccountGroup
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | User's display name. | [optional] |
| str | User's email address. | [optional] | |
| uid | str | Unique ID representing the user. | [optional] |
| last_login | datetime | User's UTC last login date (ISO date-time format). | [optional] |
| date_registered | datetime | User's UTC registration date (ISO date-time format). | [optional] |
| roles | **List[Role]** | [optional] |
Example
from thousandeyes_sdk.admin.models.user_account_group import UserAccountGroup
# TODO update the JSON string below
json = "{}"
# create an instance of UserAccountGroup from a JSON string
user_account_group_instance = UserAccountGroup.from_json(json)
# print the JSON string representation of the object
print(UserAccountGroup.to_json())
# convert the object into a dict
user_account_group_dict = user_account_group_instance.to_dict()
# create an instance of UserAccountGroup from a dict
user_account_group_from_dict = UserAccountGroup.from_dict(user_account_group_dict)