mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
# UserRequestBody
|
|
|
|
|
|
## Properties
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | User's display name. | [optional]
|
|
**email** | **str** | User's email address. | [optional]
|
|
**login_account_group_id** | **str** | Unique ID of the login account group. | [optional]
|
|
**account_group_roles** | [**List[AccountGroupRolesRequestBodyInner]**](AccountGroupRolesRequestBodyInner.md) | | [optional]
|
|
**all_account_group_role_ids** | **List[str]** | Unique IDs representing the roles. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from admin_api.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_form_dict = user_request_body.from_dict(user_request_body_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)
|
|
|
|
|