petalbid-frontend
    Preparing search index...

    Interface LoginRequest

    Defines the shape of the credentials required for a user to log in.

    interface LoginRequest {
        email: string;
        password: string;
        twoFactorCode?: string;
    }
    Index

    Properties

    email: string

    The user's email address.

    password: string

    The user's password.

    twoFactorCode?: string

    Optional TOTP code when 2FA is enabled.