thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/UserAccountGroup.md
2024-06-05 15:42:37 +01:00

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.administrative.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)