repositoryFileAclDto element
Type: |
repositoryFileAclDto |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<repositoryFileAclDto>
<ownerType>...</ownerType>
<entriesInheriting>...</entriesInheriting>
<owner>...</owner>
<id>...</id>
<tenantPath>...</tenantPath>
<aces>
<permissions>...</permissions>
<permissions>...</permissions>
<!--...more "permissions" elements...-->
<recipient>...</recipient>
<tenantPath>...</tenantPath>
<modifiable>...</modifiable>
<recipientType>...</recipientType>
</aces>
<aces>
<!--...-->
</aces>
<!--...more "aces" elements...-->
</repositoryFileAclDto>
Example JSON
{
"ownerType" : ...,
"entriesInheriting" : false,
"owner" : "...",
"id" : "...",
"tenantPath" : "...",
"aces" : [ {
"permissions" : [ ..., ... ],
"recipient" : "...",
"tenantPath" : "...",
"modifiable" : false,
"recipientType" : ...
}, ... ]
}