mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
# CreateRole201Response
|
|
|
|
|
|
## Properties
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | Name of the role. | [optional]
|
|
**role_id** | **str** | Unique ID representing the role. | [optional]
|
|
**is_builtin** | **bool** | Flag indicating if the role is built-in (Account Admin, Organization Admin, Regular User). | [optional]
|
|
**permissions** | [**List[Permission]**](Permission.md) | | [optional]
|
|
**links** | [**SelfLinksLinks**](SelfLinksLinks.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from admin_api.models.create_role201_response import CreateRole201Response
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of CreateRole201Response from a JSON string
|
|
create_role201_response_instance = CreateRole201Response.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print CreateRole201Response.to_json()
|
|
|
|
# convert the object into a dict
|
|
create_role201_response_dict = create_role201_response_instance.to_dict()
|
|
# create an instance of CreateRole201Response from a dict
|
|
create_role201_response_form_dict = create_role201_response.from_dict(create_role201_response_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)
|
|
|
|
|