Interface IShortUserDesc

Defines brief user information.

interface IShortUserDesc {
    avatarUrl?: string;
    email: string;
    fullName?: string;
    initials?: string;
    lastName: string;
    name: string;
    userId: string;
    userName: string;
}

Properties

avatarUrl?: string

User avatar image URL or empty string if the user does not have an avatar.

email: string

User email.

fullName?: string

User full name. Contains the user's first and last name. If first name and last names are empty, contains the user name.

initials?: string

User initials. Contains a first letters of the user's first and last names. If first name and last names are empty, contains the first letter of the user name.

lastName: string

Last name.

name: string

First name.

userId: string

Unique user ID.

userName: string

User name.