Search in sources :

Example 1 with StartAndStopBotRequest

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);
}
Also used : StartAndStopBotRequest(com.fanap.podchat.chat.bot.request_model.StartAndStopBotRequest)

Example 2 with StartAndStopBotRequest

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);
}
Also used : StartAndStopBotRequest(com.fanap.podchat.chat.bot.request_model.StartAndStopBotRequest)

Aggregations

StartAndStopBotRequest (com.fanap.podchat.chat.bot.request_model.StartAndStopBotRequest)2