GetChannelsParams

data class GetChannelsParams(val type: Chat.ChannelType? = null, val channelId: String? = null, val channelName: String? = null, val sort: Chat.SortType? = null, val pageOrder: String? = null, val pageSize: Int? = null, val pageNumber: Int? = null)

채널 정보 조회 객체
Channel information retrieval object

Constructors

Link copied to clipboard
constructor(jsonObject: JSONObject)
constructor(type: Chat.ChannelType? = null, channelId: String? = null, channelName: String? = null, sort: Chat.SortType? = null, pageOrder: String? = null, pageSize: Int? = null, pageNumber: Int? = null)

Properties

Link copied to clipboard
val channelId: String? = null

channel id

Link copied to clipboard
val channelName: String? = null

channel name

Link copied to clipboard
val pageNumber: Int? = null

page number to retrieve(starts from 1, default is 1)

Link copied to clipboard
val pageOrder: String? = null

sort order ("ASC", "DESC")(default is "DESC")

Link copied to clipboard
val pageSize: Int? = null

number of channels to retrieve per page(minimum 10, maximum 100, default is 10)

Link copied to clipboard
Link copied to clipboard