interface User {
    name: string;
    roles: UserRole[];
}

Properties

Properties

name: string

Name of the user (Length must be between 1 and 63 characters. First character must be an alphabet character (a-zA-Z). Only a-zA-Z0-9_$- characters are accepted).

roles: UserRole[]

List of roles assigned to the user, along with the corresponding database where each role is granted.