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

1.3 KiB

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]** [optional]

Example

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