Home > @tridion-sites/open-api-client > AccessControlEntry
Represents an entry in an Access Control List, which is used to restrict access to containers. An Access Control Entry specifies which Permissions and/or Rights a given “Trustee” has. Permissions and Rights can either be Allowed, Denied or Implicit Denied.
Signature:
export type AccessControlEntry = {
$type?: string;
AllowedPermissions?: Array<Permissions>;
AllowedRights?: Array<Rights>;
DeniedPermissions?: Array<Permissions>;
DeniedRights?: Array<Rights>;
Trustee?: Link;
};