thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/Role.md
Shahid Hussain Khan 745e74afc4
CP-2189 Update SDK names for admin and monitors modules (#9)
* CP-2189 Update SDK names for admin and monitors modules

* CP-2189 Move client to core

* CP-2189 Change client to core
2024-06-04 16:09:40 +01:00

1.1 KiB

Role

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]
has_management_permissions bool Flag indicating whether the user has management permissions. [optional]

Example

from thousandeyes_sdk.admin.models.role import Role

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

# convert the object into a dict
role_dict = role_instance.to_dict()
# create an instance of Role from a dict
role_from_dict = Role.from_dict(role_dict)

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