mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
957 B
957 B
Permissions
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| permissions | **List[Permission]** | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.administrative.models.permissions import Permissions
# TODO update the JSON string below
json = "{}"
# create an instance of Permissions from a JSON string
permissions_instance = Permissions.from_json(json)
# print the JSON string representation of the object
print(Permissions.to_json())
# convert the object into a dict
permissions_dict = permissions_instance.to_dict()
# create an instance of Permissions from a dict
permissions_from_dict = Permissions.from_dict(permissions_dict)