Interface ToggleGroupCallParticipantIsMuted

Toggles whether a participant of an active group call is muted, unmuted, or allowed to unmute themselves. Request type for Tdjson#toggleGroupCallParticipantIsMuted.

interface ToggleGroupCallParticipantIsMuted {
    @type: "toggleGroupCallParticipantIsMuted";
    group_call_id: number;
    is_muted?: boolean;
    participant_id: MessageSender;
}

Properties

@type: "toggleGroupCallParticipantIsMuted"
group_call_id: number

Group call identifier.

is_muted?: boolean

Pass true to mute the user; pass false to unmute them.

participant_id: MessageSender

Participant identifier.