Set Received-Reply Handler
API reference for the Luciq received-reply handler. Register a callback that fires when a new reply is received from your support team.
Replies.didReceiveReplyHandler = {
// Notify users about new message.
}LCQReplies.didReceiveReplyHandler = ^{
// Notify users about new message.
};Replies.setOnNewReplyReceivedCallback(new Runnable() {
//Your code goes here.
});Replies.setOnNewReplyReceivedCallback(new Runnable() {
@Override
public void run() {
//Show an alert to notify users about a new message.
}
});Replies.setOnNewReplyReceivedHandler(function () {
//Create custom alert
});Replies.setOnNewReplyReceivedCallback(Function function);Last updated