Interface IUser

Specifies information about a user.

interface IUser {
    displayName?: string;
    groups?: string[];
    password?: string;
    roles?: (string | Role)[];
    username: string;
}

Implemented by

Properties

displayName?: string

The display name of the user.

groups?: string[]

The groups associated with this user.

password?: string

The password for this user.

roles?: (string | Role)[]

The roles associates with this user.

username: string

The username of the user.