Interface LoginResponse

interface LoginResponse {
    jwt?: string;
    registration_created: boolean;
    verify_email_sent: boolean;
}

Properties

jwt?: string
registration_created: boolean
verify_email_sent: boolean