mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.3 KiB
1.3 KiB
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]** | [optional] | |
| links | SelfLinksLinks | [optional] |
Example
from admin.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_from_dict = CreateRole201Response.from_dict(create_role201_response_dict)