Interface MemberProfile

interface MemberProfile {
    deactivated: boolean;
    displayIcon: string;
    emailAddress: string;
    gravatarHash: string;
    id: string;
    isOwner: boolean;
    mentionName: string;
    name: string;
    twoFactorAuthEnabled: boolean;
    workspace: WorkspaceInterface;
}

Hierarchy

  • default
    • MemberProfile

Properties

deactivated: boolean
displayIcon: string
emailAddress: string
gravatarHash: string
id: string
isOwner: boolean
mentionName: string
name: string
twoFactorAuthEnabled: boolean
workspace: WorkspaceInterface