getNewerReplies

fun getNewerReplies(parentId: String, limit: Int, lastId: String? = null): Call<List<Message>>

Fetch replies to the specified message with id parentId that are newer than the message with lastId. If lastId is null, the oldest replies are returned.

Return

Executable async Call responsible for fetching newer replies.

Parameters

parentId

The id of the parent message.

limit

The number of replies to fetch.

lastId

The id of the last message to fetch from exclusively.