Unread Mention Me Channels Query Params
Query parameters for channels with unread @me messages.
Usage Example:
val params = UnreadMentionMeChannelsQueryParams(
channelTypes = listOf(ChannelType.GROUP, ChannelType.COMMUNITY)
).apply {
topPriority = true
pageSize = 20
}
val query = BaseChannel.createUnreadMentionMeChannelsQuery(params)
query.loadNextPage { channels, error ->
// ...
}Content copied to clipboard
Parameters
channel Types
List of channel types to query.
Constructors
Link copied to clipboard
public UnreadMentionMeChannelsQueryParams UnreadMentionMeChannelsQueryParams(List<ChannelType> channelTypes)
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Number of items per page. Valid range: 1, 100. Defaults to 20.
Link copied to clipboard
Start timestamp (milliseconds) for the query.
Link copied to clipboard
Whether pinned channels are returned first.
Link copied to clipboard
Number of items per page. Valid range: 1, 100. Defaults to 20.
Link copied to clipboard
Start timestamp (milliseconds) for the query.
Link copied to clipboard
Whether pinned channels are returned first.