petalbid-frontend
    Preparing search index...

    Interface User

    Represents a user object in the system.

    interface User {
        email: string;
        fullName: string;
        id: number;
        isDisabled: boolean;
        isTotpEnabled: boolean;
        profileImageBase64?: string;
        role: UserRole;
    }
    Index

    Properties

    email: string

    The user's email address, used for login and communication.

    fullName: string

    The full name of the user.

    id: number

    The unique identifier for the user.

    isDisabled: boolean

    Indicates if the user account is disabled.

    isTotpEnabled: boolean

    Indicates whether the user has enabled TOTP 2FA.

    profileImageBase64?: string

    The Base64 string of the user's profile image (AVIF).

    role: UserRole

    The role assigned to the user, determining their permissions.