mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
874 B
874 B
Permissions
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| permissions | **List[Permission]** | [optional] |
Example
from admin_api.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_form_dict = permissions.from_dict(permissions_dict)