QueryChannelsRequest
data class QueryChannelsRequest(val filter: FilterObject, var offset: Int = 0, var limit: Int, val querySort: QuerySorter<Channel> = QuerySortByField(), var messageLimit: Int = 0, var memberLimit: Int = 1) : ChannelRequest<QueryChannelsRequest>
Request body class for querying channels.
Constructors
Link copied to clipboard
constructor(filter: FilterObject, offset: Int = 0, limit: Int, querySort: QuerySorter<Channel> = QuerySortByField(), messageLimit: Int = 0, memberLimit: Int = 1)
Properties
Link copied to clipboard
FilterObject conditions used by backend to filter queries response.
Link copied to clipboard
True if this request is querying the first page, otherwise False.
Link copied to clipboard
Number of members in the response.
Link copied to clipboard
Number of messages in the response.
Link copied to clipboard
QuerySorter Sort specification for api queries.