interface NewUser {
    email: string;
    isNew: boolean;
    message: string;
    userId: number;
}

Properties

email: string

The user's email address.

isNew: boolean

Indicates if the user is newly created.

message: string

HTML message describing how the system handled creation of the user.

userId: number

The userId of the new user.

Generated using TypeDoc