Allows a User or Group across all related notifications for this event process to be delinked.
The recipients listed in the parameter are used as parameters to perform a @notification::delink(recipients) for every notification created by this event process.
@event::delink(list recipientTargetNames)
(List) recipientTargetNames: This is a list of target names for Users or Groups (not Devices) that should be delinked.
(Boolean) true for success; false for failure
This example illustrates how to delink the event recipients to this event resolution business process.
#delink all the recipients that have been involved by
#any notification associated to this event process
@event::delink("CompanyAdmin")
$recipients = "Jim"
$recipients::add("Bob")
@event::delink($recipients)