Interface GroupCallRecentSpeaker

Describes a recently speaking participant in a group call.

interface GroupCallRecentSpeaker {
    @type: "groupCallRecentSpeaker";
    is_speaking?: boolean;
    participant_id: MessageSender;
}

Properties

@type: "groupCallRecentSpeaker"
is_speaking?: boolean

True, is the user has spoken recently.

participant_id: MessageSender

Group call participant identifier.