mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
861 B
861 B
Roles
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| roles | **List[Role]** | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.administrative.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)