mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1023 B
1023 B
BaseRole
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] |
Example
from admin.models.base_role import BaseRole
# TODO update the JSON string below
json = "{}"
# create an instance of BaseRole from a JSON string
base_role_instance = BaseRole.from_json(json)
# print the JSON string representation of the object
print(BaseRole.to_json())
# convert the object into a dict
base_role_dict = base_role_instance.to_dict()
# create an instance of BaseRole from a dict
base_role_from_dict = BaseRole.from_dict(base_role_dict)