thousandeyes-sdk-python/admin/docs/Roles.md

776 B

Roles

Properties

Name Type Description Notes
roles **List[Role]** [optional]

Example

from admin.models.roles import Roles

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

# convert the object into a dict
roles_dict = roles_instance.to_dict()
# create an instance of Roles from a dict
roles_from_dict = Roles.from_dict(roles_dict)

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