Type alias AuthMFAEnrollTOTPResponse

AuthMFAEnrollTOTPResponse: {
    data: {
        friendly_name?: string;
        id: string;
        totp: {
            qr_code: string;
            secret: string;
            uri: string;
        };
        type: "totp";
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc