Role🔗
Definition🔗
export interface Role {
// The role identifier `managed:builtins:editor:permissions`
name: string;
// Optional display
displayName?: string;
// Name of the team.
groupName?: string;
// Role description
description?: string;
// Do not show this role
hidden: boolean;
}
Methods🔗
No methods.