ChannelInfo

@Immutable
data class ChannelInfo(val cid: String? = null, val id: String? = null, val type: String? = null, val memberCount: Int = 0, val name: String? = null, val image: String? = null)

A Channel object that contains less information. Used only internally.

Parameters

cid

The channel id in the format messaging:123.

id

Channel's unique ID.

type

Type of the channel.

memberCount

Number of members in the channel.

name

Channel's name.

image

Channel's image.

Constructors

Link copied to clipboard
constructor(cid: String? = null, id: String? = null, type: String? = null, memberCount: Int = 0, name: String? = null, image: String? = null)

Properties

Link copied to clipboard
val cid: String? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val image: String? = null
Link copied to clipboard
val memberCount: Int = 0
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val type: String? = null