use of com.fanap.podchat.chat.pin.pin_thread.model.RequestPinThread in project pod-chat-android-sdk by FanapSoft.
the class ChatActivity method unPinThread.
private void unPinThread() {
RequestPinThread requestPinThread = new RequestPinThread.Builder(TEST_THREAD_ID).build();
presenter.unPinThread(requestPinThread);
}
use of com.fanap.podchat.chat.pin.pin_thread.model.RequestPinThread in project pod-chat-android-sdk by FanapSoft.
the class ChatActivity method pinThreadToTop.
private void pinThreadToTop() {
RequestPinThread requestPinThread = new RequestPinThread.Builder(TEST_THREAD_ID).build();
presenter.pinThread(requestPinThread);
}
Aggregations