Interface SetGroupCallParticipantIsSpeaking

Informs TDLib that speaking state of a participant of an active group has changed. Request type for Tdjson#setGroupCallParticipantIsSpeaking.

interface SetGroupCallParticipantIsSpeaking {
    @type: "setGroupCallParticipantIsSpeaking";
    audio_source: number;
    group_call_id: number;
    is_speaking?: boolean;
}

Properties

@type: "setGroupCallParticipantIsSpeaking"
audio_source: number

Group call participant's synchronization audio source identifier, or 0 for the current user.

group_call_id: number

Group call identifier.

is_speaking?: boolean

Pass true if the user is speaking.