Interface ResponseData

Interface for the response data object.

interface ResponseData {
    email: string;
    firstname: string;
    lastname: string;
    message?: string;
    staff: boolean;
    user: string;
}

Properties

email: string

The email of the user

firstname: string

The first name of the user

lastname: string

The last name of the user

message?: string

The message of the response

staff: boolean

The staff status of the user

user: string

The username of the user