thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/Roles.md
2024-06-04 09:14:54 +00:00

852 B

Roles

Properties

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

Example

from thousandeyes_sdk.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]