Interface ChatEventVideoChatParticipantIsMutedToggled

A video chat participant was muted or unmuted. Subtype of ChatEventAction.

interface ChatEventVideoChatParticipantIsMutedToggled {
    @type: "chatEventVideoChatParticipantIsMutedToggled";
    is_muted?: boolean;
    participant_id: MessageSender;
}

Properties

@type: "chatEventVideoChatParticipantIsMutedToggled"
is_muted?: boolean

New value of is_muted.

participant_id: MessageSender

Identifier of the affected group call participant.