ChannelMute

data class ChannelMute(    val user: User,     val channel: Channel,     val createdAt: Date,     var updatedAt: Date,     val expires: Date?)

Represents a channel mute.

Parameters

user

The owner of the channel mute.

channel

The muted channel.

createdAt

Date/time of creation.

updatedAt

Date/time of the last update.

expires

Date/time of mute expiration.

Constructors

Link copied to clipboard
fun ChannelMute(    user: User,     channel: Channel,     createdAt: Date,     updatedAt: Date,     expires: Date?)

Properties

Link copied to clipboard
val channel: Channel
Link copied to clipboard
val createdAt: Date
Link copied to clipboard
val expires: Date?
Link copied to clipboard
var updatedAt: Date
Link copied to clipboard
val user: User