getConversationsByGroupContactId

suspend fun getConversationsByGroupContactId(    context: Context,     groupContactId: String,     @IntRange(from = 0) from: Int,     @IntRange(from = 1) pageSize: Int,     ascOrder: Boolean = false): List<STWConversation>?

Call this method to retrieve the list of company conversations given.

Return

The List of conversation.

Parameters

context

The application context

groupContactId

The group contact Id

from

The offset of the first conversation starting from it will return conversation list based on pageSize. Value should be >= 0

pageSize

The max number of conversations record to be retrieved, 0 will return nothing. Value should be >= 1

ascOrder

false Whether the list is ordered ascending or descending