Name | Type | Description | Notes |
---|---|---|---|
is_inheritance_enabled | bool | [optional] | |
inherited | List[PermissionElement] | [optional] | |
locally_set | List[PermissionElement] | [optional] | |
settable | List[str] | [optional] |
from alfresco_core_api_client.models.permissions_info import PermissionsInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PermissionsInfo from a JSON string
permissions_info_instance = PermissionsInfo.from_json(json)
# print the JSON string representation of the object
print PermissionsInfo.to_json()
# convert the object into a dict
permissions_info_dict = permissions_info_instance.to_dict()
# create an instance of PermissionsInfo from a dict
permissions_info_form_dict = permissions_info.from_dict(permissions_info_dict)