mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
* CP-2189 Update SDK names for admin and monitors modules * CP-2189 Move client to core * CP-2189 Change client to core
33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
# Permission
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**label** | **str** | Label corresponding to the permission. | [optional]
|
|
**permission_id** | **str** | Unique ID representing the permission. | [optional]
|
|
**is_management_permission** | **bool** | Flag indicating whether the permission is classified as a management permission. | [optional]
|
|
**permission** | **str** | Permission name | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.admin.models.permission import Permission
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of Permission from a JSON string
|
|
permission_instance = Permission.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(Permission.to_json())
|
|
|
|
# convert the object into a dict
|
|
permission_dict = permission_instance.to_dict()
|
|
# create an instance of Permission from a dict
|
|
permission_from_dict = Permission.from_dict(permission_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|