Interface UserNg

Represents a user. Look at UserRepository documentation to find the available ways to obtain objects adhering to this interface

interface UserNg {
    activity: PresenceActivity;
    avatar: string;
    displayName: string;
    domain: string;
    id: string;
    mood: PresenceMood;
    note: string;
    online: boolean;
    role: UserRole;
    username: string;
}

Properties

avatar: string
displayName: string
domain: string
id: string
note: string
online: boolean
role: UserRole
username: string