Type alias AuthMFAVerifyResponse

AuthMFAVerifyResponse: {
    data: {
        access_token: string;
        expires_in: number;
        refresh_token: string;
        token_type: string;
        user: AuthUser;
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc