com.viber.bot.middleware.RequestReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viber-bot Show documentation
Show all versions of viber-bot Show documentation
Use this library to communicate with the Viber API to develop a bot for https://developers.viber.com/.
The newest version!
package com.viber.bot.middleware;
import com.viber.bot.Request;
public interface RequestReceiver {
void acceptRequest(final Request request);
}