Represents a primitive role.

This interface is used to define the basic properties of a role.

This is the base interface for all role types.

0.4.0

interface RolePrimitive {
    name: string;
    description?: string;
}

Hierarchy (view full)

Properties

Properties

name: string

The name of the role.

Maximum length is defined in Role Configuration.

description?: string

Description of the role.

Maximum length is defined in Role Configuration.