Feedback Aide API Events
save:success
Fired when the save operation completes successfully.
You would want to be notified about this event firing, because you might want to update your application UI to indicate the save process has completed successfully, for example.
Examples
feedbackSession.on('save:success', function () {
console.log('save succeeded');
});