Need both .lazy and .debounce

As the title says, I need both (or a combination of) .lazy and .debounce on a model, is that possible?

Thanks

I don’t think so, but I’m not sure there’s a situation where it make sense to. Lazy sends a server request when you tab out/click away from an input, debounce sends a request after a timer of the input not being updated, ie when you pause/stop typing. So if you could do both, the debounce request would effectively make the lazy request a duplicate and unneeded.