thousandeyes-sdk-python/admin/docs/CreateRole201Response.md
2024-05-17 16:18:40 +01:00

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 thousandeyes_sdk.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)

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