petalbid-frontend
    Preparing search index...

    Interface RegisterUserRequest

    Defines the shape of the data required to register a new user.

    interface RegisterUserRequest {
        email: string;
        fullName: string;
        password: string;
        role: UserRole;
    }
    Index

    Properties

    email: string

    The email address for the new user.

    fullName: string

    The full name of the new user.

    password: string

    The password for the new user's account.

    role: UserRole

    The role to be assigned to the new user.