getCaseEvent()
Obtains the case related events that can be subscribed to using the getPubSubUtils() API.
Returns
The name of the event as a string.
Parameters
This API does not have parameters.
Usage example
In this example, the API returns caseCreated
and
caseFollowerUpdateByOperatorFromWidget
as the events that can
be subscribed to.
const CaseEvent = PCore.getEvents().getCaseEvent().CASE_CREATED;
// console output:
// caseCreated
const CaseEvent = PCore.getEvents().getCaseEvent().CASE_FOLLOWER_UPDATE_BY_OPERATOR_FROM_WIDGET;
// console output:
// caseFollowerUpdateByOperatorFromWidget
Previous topic APIs in the Events module Next topic APIs in the FeedUtils class