use of com.fanap.podchat.chat.ping.result.StatusPingResult in project pod-chat-android-sdk by FanapSoft.
the class PingManager method handleOnPingStatusSent.
public static ChatResponse<StatusPingResult> handleOnPingStatusSent(ChatMessage chatMessage) {
StatusPingResult result = new StatusPingResult();
ChatResponse<StatusPingResult> response = new ChatResponse<>();
response.setResult(result);
response.setCache(false);
response.setHasError(false);
response.setUniqueId(chatMessage.getUniqueId());
return response;
}
Aggregations