I'm confused about the Google Universal analytics Non-Interaction hit scope. Docs don't say anything about it: https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#nonInteraction
Is it working only for the next event or for the entire duration of the visit?
Should I set it back to false after the event is sent?
Currently I'm doing it as:
ga("set", "nonInteraction", true);
ga("send", "event", {..});