thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/RoleDetail.md
2024-06-05 15:42:37 +01:00

1.2 KiB

RoleDetail

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 SelfLinks [optional]

Example

from thousandeyes_sdk.administrative.models.role_detail import RoleDetail

# TODO update the JSON string below
json = "{}"
# create an instance of RoleDetail from a JSON string
role_detail_instance = RoleDetail.from_json(json)
# print the JSON string representation of the object
print(RoleDetail.to_json())

# convert the object into a dict
role_detail_dict = role_detail_instance.to_dict()
# create an instance of RoleDetail from a dict
role_detail_from_dict = RoleDetail.from_dict(role_detail_dict)

[Back to Model list] [Back to API list] [Back to README]