mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
* CP-2189 Update SDK names for admin and monitors modules * CP-2189 Move client to core * CP-2189 Change client to core
35 lines
1.3 KiB
Markdown
35 lines
1.3 KiB
Markdown
# UserAccountGroup
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | User's display name. | [optional]
|
|
**email** | **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]**](Role.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|