Community Remote Messages Query Params
community channel specified sub-channel Remote history message query parameters.
Used for com.nexconn.chat.channel.CommunityChannel.createRemoteMessagesQuery, Get community channel specified sub-channel Remote history message and Supports Pagination.
Usage Example:
val params = CommunityRemoteMessagesQueryParams(communityChannel).apply {
pageSize = 30
}
val query = CommunityChannel.createRemoteMessagesQuery(params)
query.loadNextPage { messages, error ->
if (error == null && messages != null) {
// Handle remote history messages
}
}Content copied to clipboard
Parameters
channel
Target community channel