thousandeyes-sdk-python/admin_api/docs/CreateRole201Response.md
2023-12-07 10:28:08 +00: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 admin_api.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_form_dict = create_role201_response.from_dict(create_role201_response_dict)

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