mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.3 KiB
1.3 KiB
UserRequestBody
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | User's display name. | [optional] |
| str | User's email address. | [optional] | |
| login_account_group_id | str | Unique ID of the login account group. | [optional] |
| account_group_roles | **List[AccountGroupRolesRequestBodyInner]** | [optional] | |
| all_account_group_role_ids | List[str] | Unique IDs representing the roles. | [optional] |
Example
from admin.models.user_request_body import UserRequestBody
# TODO update the JSON string below
json = "{}"
# create an instance of UserRequestBody from a JSON string
user_request_body_instance = UserRequestBody.from_json(json)
# print the JSON string representation of the object
print(UserRequestBody.to_json())
# convert the object into a dict
user_request_body_dict = user_request_body_instance.to_dict()
# create an instance of UserRequestBody from a dict
user_request_body_from_dict = UserRequestBody.from_dict(user_request_body_dict)