Interface ToggleGroupCallMuteNewParticipants

Toggles whether new participants of a group call can be unmuted only by administrators of the group call. Requires groupCall.can_toggle_mute_new_participants group call flag. Request type for Tdjson#toggleGroupCallMuteNewParticipants.

interface ToggleGroupCallMuteNewParticipants {
    @type: "toggleGroupCallMuteNewParticipants";
    group_call_id: number;
    mute_new_participants?: boolean;
}

Properties

@type: "toggleGroupCallMuteNewParticipants"
group_call_id: number

Group call identifier.

mute_new_participants?: boolean

New value of the mute_new_participants setting.