Interface LoginResponse

interface LoginResponse {
    errors?: string[];
    jwt?: string;
    message?: string;
    registration_created: boolean;
    status?: string;
    verify_email_sent: boolean;
}

Properties

errors?: string[]
jwt?: string
message?: string
registration_created: boolean
status?: string
verify_email_sent: boolean

Generated using TypeDoc