use of com.fanap.podchat.chat.bot.request_model.StartAndStopBotRequest in project pod-chat-android-sdk by FanapSoft.
the class ChatActivity method startBot.
private void startBot() {
StartAndStopBotRequest request = new StartAndStopBotRequest.Builder(TEST_THREAD_ID, "TEST2BOT").build();
presenter.startBot(request);
}
use of com.fanap.podchat.chat.bot.request_model.StartAndStopBotRequest in project pod-chat-android-sdk by FanapSoft.
the class ChatActivity method stopBot.
private void stopBot() {
StartAndStopBotRequest request = new StartAndStopBotRequest.Builder(TEST_THREAD_ID, "TEST2BOT").build();
presenter.stopBot(request);
}
Aggregations