Interface WhatsAppInboundEventHandler
-
- All Known Implementing Classes:
WhatsAppContactVerificationResponseEventHandler
public interface WhatsAppInboundEventHandler- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetType()The type of the event that this handler handles.voidprocess(com.fasterxml.jackson.databind.JsonNode eventPayload)Process the event payload.
-
-
-
Method Detail
-
getType
String getType()
The type of the event that this handler handles.- Returns:
- the type of the event that is handled
-
process
void process(com.fasterxml.jackson.databind.JsonNode eventPayload)
Process the event payload.- Parameters:
eventPayload- the payload of the event
-
-