Muted state info.

interface MutedInfo {
    description: string;
    endAt: number;
    isMuted: boolean;
    remainingDuration: number;
    startAt: number;
}

Properties

description: string

Muted state description.

endAt: number

Timestamp at which the muted state ends.

isMuted: boolean

Whether a user is muted in a channel.

remainingDuration: number

The duration of muted state.

startAt: number

Timestamp at which the muted state started.