interface User {
    2faEnabled: boolean;
    activated: boolean;
    avatarUrl: string;
    confirmed: boolean;
    cookieConsentData: string;
    email: string;
    firstName: string;
    lastName: string;
    signInCount: number;
    sys: BasicMetaSysProps;
    toPlainObject(): UserProps;
}

Hierarchy (view full)

Properties

2faEnabled: boolean
activated: boolean

Activation flag

avatarUrl: string

Url to the users avatar

confirmed: boolean

User confirmation flag

cookieConsentData: string
email: string

Email address of the user

firstName: string

First name of the user

lastName: string

Last name of the user

signInCount: number

Number of sign ins

System metadata

Methods